D3156: githelp: use revsymbol() for looking up symbol

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Fri Apr 6 08:41:52 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG764ada920db5: githelp: use revsymbol() for looking up symbol (authored by martinvonz, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3156?vs=7771&id=7778

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

AFFECTED FILES
  hgext/githelp.py

CHANGE DETAILS

diff --git a/hgext/githelp.py b/hgext/githelp.py
--- a/hgext/githelp.py
+++ b/hgext/githelp.py
@@ -26,6 +26,7 @@
     error,
     fancyopts,
     registrar,
+    scmutil,
 )
 from mercurial.utils import (
     procutil,
@@ -253,7 +254,7 @@
     too many ways to spell revisions in git for us to reasonably catch all of
     them, so let's be conservative.
     """
-    if string in repo:
+    if scmutil.isrevsymbol(repo, string):
         # if it's definitely a revision let's not even check if a file of the
         # same name exists.
         return False



To: martinvonz, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list