mercurial/debugcommands.py
changeset 39064 a2fa7247ca70
parent 39062 efeeb73f54c3
child 39065 730e7d92a023
--- a/mercurial/debugcommands.py	Fri Aug 10 03:16:02 2018 -0400
+++ b/mercurial/debugcommands.py	Fri Aug 10 03:31:23 2018 -0400
@@ -3201,7 +3201,7 @@
             # urllib.Request insists on using has_data() as a proxy for
             # determining the request method. Override that to use our
             # explicitly requested method.
-            req.get_method = lambda: method
+            req.get_method = lambda: pycompat.sysstr(method)
 
             try:
                 res = opener.open(req)