Submitter | Gregory Szorc |
---|---|
Date | March 22, 2017, 5:56 a.m. |
Message ID | <242fec51a193b396f178.1490162200@ubuntu-vm-main> |
Download | mbox | patch |
Permalink | /patch/19552/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/pycompat.py b/mercurial/pycompat.py --- a/mercurial/pycompat.py +++ b/mercurial/pycompat.py @@ -23,7 +23,6 @@ if not ispy3: import Queue as _queue import SocketServer as socketserver import urlparse - urlunquote = urlparse.unquote import xmlrpclib else: import http.client as httplib @@ -31,7 +30,6 @@ else: import queue as _queue import socketserver import urllib.parse as urlparse - urlunquote = urlparse.unquote_to_bytes import xmlrpc.client as xmlrpclib if ispy3: