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

Unified Diff: git_cl.py

Issue 112123003: Fix TypeError: cannot concatenate 'str' and 'int' objects (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years 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: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 5675104d65ab16ff6f50f95b63ad07c7818d0223..4ef4c4630a8e4008474492620af64cc2b34aa648 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -654,7 +654,7 @@ or verify this branch is set up to track another (via the --track argument to
'this command again.') % issue)
else:
DieWithError(
- '\nFailed to fetch issue description. HTTP error ' + e.code)
+ '\nFailed to fetch issue description. HTTP error %d' % e.code)
self.has_description = True
if pretty:
wrapper = textwrap.TextWrapper()
« 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