From 94a17bb494f9b61bd4713032757c4e88112af30f Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 1 Aug 2016 22:00:35 +0900 Subject: [PATCH] Use spaces between checksum and filename --- script/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/upload.py b/script/upload.py index 375b07500e92..8268dd091241 100755 --- a/script/upload.py +++ b/script/upload.py @@ -247,7 +247,7 @@ def upload_sha256_checksum(version, file_path): filename = os.path.basename(file_path) with open(checksum_path, 'w') as checksum: - checksum.write('{} *{}'.format(sha256.hexdigest(), filename)) + checksum.write('{} {}'.format(sha256.hexdigest(), filename)) s3put(bucket, access_key, secret_key, os.path.dirname(checksum_path), 'atom-shell/tmp/{0}'.format(version), [checksum_path])