Skip to content

Commit f4fd6b5

Browse files
committed
Star args
1 parent 1131096 commit f4fd6b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

windows-release/merge-and-upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def find_missing_from_index(url, installs):
256256
INDEX_PATH = url2path(INDEX_URL)
257257

258258
try:
259-
INDEX_MTIME = int(call_ssh(["stat", "-c", "%Y", INDEX_PATH]) or "0")
259+
INDEX_MTIME = int(call_ssh("stat", "-c", "%Y", INDEX_PATH) or "0")
260260
except ValueError:
261261
pass
262262

@@ -315,7 +315,7 @@ def find_missing_from_index(url, installs):
315315
# Check that nobody else has published while we were uploading
316316
if INDEX_FILE and INDEX_MTIME:
317317
try:
318-
mtime = int(call_ssh(["stat", "-c", "%Y", INDEX_PATH]) or "0")
318+
mtime = int(call_ssh("stat", "-c", "%Y", INDEX_PATH) or "0")
319319
except ValueError:
320320
mtime = 0
321321
if mtime > INDEX_MTIME:

0 commit comments

Comments
 (0)