D3249: wireprotoserver: headers are bytes for us internally, use bytes

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Apr 12 11:34:24 EDT 2018


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 ).

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


More information about the Mercurial-devel mailing list