File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -160,10 +160,7 @@ def percy_snapshot(
160
160
if widths is None :
161
161
widths = [1280 ]
162
162
163
- # py3.9 hardcoded here to keep snapshot names the same accorss
164
- # future python upgrades
165
- snapshot_name = f"{ name } - py3.9"
166
- logger .info ("taking snapshot name => %s" , snapshot_name )
163
+ logger .info ("taking snapshot name => %s" , name )
167
164
try :
168
165
if wait_for_callbacks :
169
166
# the extra one second sleep adds safe margin in the context
@@ -199,7 +196,7 @@ def percy_snapshot(
199
196
)
200
197
201
198
try :
202
- self .percy_runner .snapshot (name = snapshot_name , widths = widths )
199
+ self .percy_runner .snapshot (name = name , widths = widths )
203
200
except requests .HTTPError as err :
204
201
# Ignore retries.
205
202
if err .request .status_code != 400 :
You can’t perform that action at this time.
0 commit comments