summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorCecylia Bocovich <cohosh@torproject.org>2019-12-05 17:26:32 -0500
committerCecylia Bocovich <cohosh@torproject.org>2019-12-05 17:26:32 -0500
commit5684c4fc95170951f062b36002733034cb6a3904 (patch)
treef998548bad58f31128eac4cf0ab908baa42a2c71 /scripts
parent233d7da2f7749f46ddc100099667f7b794e8f719 (diff)
Slight fix to working of log messages
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update_files4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/update_files b/scripts/update_files
index 264c118..6d087e6 100755
--- a/scripts/update_files
+++ b/scripts/update_files
@@ -39,7 +39,7 @@ def upload_files(release):
release.upload_asset(filename)
os.remove(filename)
except:
- print("Error: failed to download "+url+". Will retry later.")
+ print("Error: failed to update "+url+". Will retry later.")
failed_uploads.append(url)
#Retry failed uploads
for url in failed_uploads:
@@ -49,7 +49,7 @@ def upload_files(release):
release.upload_asset(filename)
os.remove(filename)
except:
- print("Error: failed to download "+url+". Please upload this file manually.")
+ print("Error: failed to update "+url+". Please upload this file manually.")
failure = True