Chromium Code Reviews| 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 |