mercurial/keepalive.py
changeset 37688 e266e75d77dc
parent 37665 83250442dc81
child 39649 d6d094259d9c
--- a/mercurial/keepalive.py	Sat Apr 14 17:27:32 2018 +0900
+++ b/mercurial/keepalive.py	Sat Apr 14 10:43:19 2018 -0400
@@ -326,7 +326,7 @@
                 data = urllibcompat.getdata(req)
                 h.putrequest(
                     req.get_method(), urllibcompat.getselector(req),
-                    skipheaders)
+                    **skipheaders)
                 if r'content-type' not in headers:
                     h.putheader(r'Content-type',
                                 r'application/x-www-form-urlencoded')
@@ -335,7 +335,7 @@
             else:
                 h.putrequest(
                     req.get_method(), urllibcompat.getselector(req),
-                    skipheaders)
+                    **skipheaders)
         except socket.error as err:
             raise urlerr.urlerror(err)
         for k, v in headers.items():