hgweb: rewrite two X or Y and Z ad-hoc ternaries with Y if X else Z

Just easier to muddle through for my brain now that I don't see the
old pattern much anymore.

Differential Revision: https://phab.mercurial-scm.org/D1077
This commit is contained in:
Augie Fackler 2017-10-05 14:48:31 -04:00
parent 14c0f38685
commit 4fec03fc61
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ class requestcontext(object):
if style == styles[0]:
vars['style'] = style
start = req.url[-1] == '?' and '&' or '?'
start = '&' if req.url[-1] == '?' else '?'
sessionvars = webutil.sessionvars(vars, start)
if not self.reponame:

View File

@ -508,7 +508,7 @@ class hgwebdir(object):
if style == styles[0]:
vars['style'] = style
start = url[-1] == '?' and '&' or '?'
start = '&' if url[-1] == '?' else '?'
sessionvars = webutil.sessionvars(vars, start)
logourl = config('web', 'logourl')
logoimg = config('web', 'logoimg')