keepalive: add ** overlooked in 83250442dc81
authorAugie Fackler <augie@google.com>
Sat, 14 Apr 2018 10:43:19 -0400
changeset 37688 e266e75d77dc
parent 37687 8872d46643b6
child 37689 a7dbda94c86a
keepalive: add ** overlooked in 83250442dc81 Caught by Yuya in D3326. Differential Revision: https://phab.mercurial-scm.org/D3372
mercurial/keepalive.py
--- 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():