Submitter | Augie Fackler |
---|---|
Date | Oct. 9, 2016, 2:16 p.m. |
Message ID | <d333d64709648be4b31a.1476022606@augie-macbookair2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/16999/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/pycompat.py b/mercurial/pycompat.py --- a/mercurial/pycompat.py +++ b/mercurial/pycompat.py @@ -21,6 +21,7 @@ if not ispy3: import Queue as _queue import SocketServer as socketserver import urlparse + url_unquote = urlparse.unquote import xmlrpclib else: import http.client as httplib @@ -29,6 +30,7 @@ else: import queue as _queue import socketserver import urllib.parse as urlparse + url_unquote = urlparse.unquote_to_bytes import xmlrpc.client as xmlrpclib if ispy3: