This revision was automatically updated to reflect the committed changes.
Closed by commit rHG9170df9106a8: wireprotoserver: headers are bytes for us
internally, use bytes (authored by durin42, committed by ).
Advertising
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3249?vs=8013&id=8068
REVISION DETAIL
https://phab.mercurial-scm.org/D3249
AFFECTED FILES
mercurial/wireprotoserver.py
CHANGE DETAILS
diff --git a/mercurial/wireprotoserver.py b/mercurial/wireprotoserver.py
--- a/mercurial/wireprotoserver.py
+++ b/mercurial/wireprotoserver.py
@@ -103,7 +103,7 @@
def getprotocaps(self):
if self._protocaps is None:
- value = decodevaluefromheaders(self._req, r'X-HgProto')
+ value = decodevaluefromheaders(self._req, b'X-HgProto')
self._protocaps = set(value.split(' '))
return self._protocaps
To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel