Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/hgwebdir_mod.py @ 34703:d1fccbd50fcd
hgweb: use native strings consistently for querystring parsing
Differential Revision: https://phab.mercurial-scm.org/D1078
author | Augie Fackler <augie@google.com> |
---|---|
date | Thu, 05 Oct 2017 14:48:52 -0400 |
parents | b2316265a32e |
children | ff2370a70fe8 c6061cadb400 |
line wrap: on
line diff
--- a/mercurial/hgweb/hgwebdir_mod.py Thu Oct 05 14:48:31 2017 -0400 +++ b/mercurial/hgweb/hgwebdir_mod.py Thu Oct 05 14:48:52 2017 -0400 @@ -508,7 +508,7 @@ if style == styles[0]: vars['style'] = style - start = '&' if url[-1] == '?' else '?' + start = r'&' if url[-1] == r'?' else r'?' sessionvars = webutil.sessionvars(vars, start) logourl = config('web', 'logourl') logoimg = config('web', 'logoimg')