hgweb: use revsymbol() to determine if query is a revision
authorMartin von Zweigbergk <martinvonz@google.com>
Thu, 05 Apr 2018 21:32:59 -0700
changeset 37387 83d537162894
parent 37386 167b22a906f3
child 37388 764ada920db5
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
mercurial/hgweb/webcommands.py
--- 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