Commit daee1d31 authored by yujie.mao@intel.com's avatar yujie.mao@intel.com

Fix TypeError: cannot concatenate 'str' and 'int' objects

BUG=None
TEST=Error log print

Review URL: https://codereview.chromium.org/112123003

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@241544 0039d316-1c4b-4281-b951-d872f2087c98
parent 4ac25532
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment