D2312: hgweb: header dict entries are native strings

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Sun Feb 18 11:24:26 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGd18c0cf5f3ab: hgweb: header dict entries are native strings (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2312?vs=5830&id=5881

REVISION DETAIL
  https://phab.mercurial-scm.org/D2312

AFFECTED FILES
  mercurial/hgweb/common.py

CHANGE DETAILS

diff --git a/mercurial/hgweb/common.py b/mercurial/hgweb/common.py
--- a/mercurial/hgweb/common.py
+++ b/mercurial/hgweb/common.py
@@ -45,7 +45,7 @@
     authentication info). Return if op allowed, else raise an ErrorResponse
     exception.'''
 
-    user = req.env.get('REMOTE_USER')
+    user = req.env.get(r'REMOTE_USER')
 
     deny_read = hgweb.configlist('web', 'deny_read')
     if deny_read and (not user or ismember(hgweb.repo.ui, user, deny_read)):
@@ -61,7 +61,7 @@
         return
 
     # enforce that you can only push using POST requests
-    if req.env['REQUEST_METHOD'] != 'POST':
+    if req.env[r'REQUEST_METHOD'] != r'POST':
         msg = 'push requires POST request'
         raise ErrorResponse(HTTP_METHOD_NOT_ALLOWED, msg)
 



To: durin42, #hg-reviewers, indygreg
Cc: pulkit, mercurial-devel


More information about the Mercurial-devel mailing list