Mercurial > public > mercurial-scm > hg
diff mercurial/hgweb/webcommands.py @ 37387:83d537162894
hgweb: use revsymbol() to determine if query is a revision
repo.__getitem__ is about to get dumber.
Differential Revision: https://phab.mercurial-scm.org/D3155
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 05 Apr 2018 21:32:59 -0700 |
parents | d3a2344446e6 |
children | 47aea60d114d |
line wrap: on
line diff
--- a/mercurial/hgweb/webcommands.py Thu Apr 05 14:03:33 2018 -0700 +++ b/mercurial/hgweb/webcommands.py Thu Apr 05 21:32:59 2018 -0700 @@ -248,7 +248,7 @@ def getsearchmode(query): try: - ctx = web.repo[query] + ctx = scmutil.revsymbol(web.repo, query) except (error.RepoError, error.LookupError): # query is not an exact revision pointer, need to # decide if it's a revset expression or keywords