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

Unified Diff: third_party/upload.py

Issue 23533071: Fix uploading binary files to rietveld. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Update Created 7 years, 3 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: third_party/upload.py
diff --git a/third_party/upload.py b/third_party/upload.py
index 31542663af90b4a3e344fac6512d6b29195d708b..be13ed3977573dabaa4003a05036ab3df599f81f 100755
--- a/third_party/upload.py
+++ b/third_party/upload.py
@@ -452,7 +452,7 @@ class AbstractRpcServer(object):
url = "%s%s" % (self.host, request_path)
if args:
url += "?" + urllib.urlencode(args)
- req = self._CreateRequest(url=url, data=payload)
+ req = self._CreateRequest(url=url.encode("utf-8"), data=payload)
req.add_header("Content-Type", content_type)
if extra_headers:
for header, value in extra_headers.items():
« 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