Fix uploading binary files to rietveld.

httplib chokes on concatenating the unicode string "url" and some bytecode in "data".

BUG=169600

Review URL: https://chromiumcodereview.appspot.com/24172008

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@225058 0039d316-1c4b-4281-b951-d872f2087c98
parent 2702bcde
...@@ -847,7 +847,7 @@ def CMDupload(change_info, args): ...@@ -847,7 +847,7 @@ def CMDupload(change_info, args):
'See http://goo.gl/JGg0Z for details.\n') 'See http://goo.gl/JGg0Z for details.\n')
upload_arg = ["upload.py", "-y"] upload_arg = ["upload.py", "-y"]
upload_arg.append("--server=%s" % change_info.rietveld) upload_arg.append("--server=%s" % change_info.rietveld.encode('utf-8'))
reviewers = change_info.get_reviewers() or output.reviewers reviewers = change_info.get_reviewers() or output.reviewers
if (reviewers and if (reviewers and
......
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