D2311: keepalive: headers are native strings, mark them as such
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Sun Feb 18 16:24:23 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG19a04ca90413: keepalive: headers are native strings, mark them as such (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2311?vs=5829&id=5880
REVISION DETAIL
https://phab.mercurial-scm.org/D2311
AFFECTED FILES
mercurial/keepalive.py
CHANGE DETAILS
diff --git a/mercurial/keepalive.py b/mercurial/keepalive.py
--- a/mercurial/keepalive.py
+++ b/mercurial/keepalive.py
@@ -324,11 +324,11 @@
h.putrequest(
req.get_method(), urllibcompat.getselector(req),
**pycompat.strkwargs(skipheaders))
- if 'content-type' not in headers:
- h.putheader('Content-type',
- 'application/x-www-form-urlencoded')
- if 'content-length' not in headers:
- h.putheader('Content-length', '%d' % len(data))
+ if r'content-type' not in headers:
+ h.putheader(r'Content-type',
+ r'application/x-www-form-urlencoded')
+ if r'content-length' not in headers:
+ h.putheader(r'Content-length', r'%d' % len(data))
else:
h.putrequest(
req.get_method(), urllibcompat.getselector(req),
To: durin42, #hg-reviewers, indygreg
Cc: pulkit, mercurial-devel
More information about the Mercurial-devel
mailing list