Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1171)

Unified Diff: py/utils/gs_utils.py

Issue 1064763003: Fix string concat in gs_utils (Closed) Base URL: https://skia.googlesource.com/common.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: py/utils/gs_utils.py
diff --git a/py/utils/gs_utils.py b/py/utils/gs_utils.py
index d7c01c7912986d49a2b3c26314f2de9cf51fafae..c2e6de603abed340986e85a4ab2ae3bdec40cae2 100644
--- a/py/utils/gs_utils.py
+++ b/py/utils/gs_utils.py
@@ -413,7 +413,7 @@ class GSUtils(object):
break
except Exception as error:
if retry < retries - 1:
- print ' Retrying upload, attempt #%d' % retry + 1
+ print ' Retrying upload, attempt #%d' % (retry + 1)
time.sleep(2 ** retry)
else:
err[rel_path] = error
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698