# HG changeset patch # User Augie Fackler # Date 1523716999 14400 # Node ID e266e75d77dc7dd6fd81b092273b1115744d8e30 # Parent 8872d46643b6db8c0c4126165e2575c171d2e2f1 keepalive: add ** overlooked in 83250442dc81 Caught by Yuya in D3326. Differential Revision: https://phab.mercurial-scm.org/D3372 diff -r 8872d46643b6 -r e266e75d77dc 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():