Submitter | phabricator |
---|---|
Date | April 13, 2018, 6 p.m. |
Message ID | <differential-rev-PHID-DREV-o3hvbgyfnxweg2f54rkd-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/30856/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py --- a/mercurial/scmutil.py +++ b/mercurial/scmutil.py @@ -444,6 +444,11 @@ return node def isrevsymbol(repo, symbol): + """Checks if a symbol exists in the repo. + + See revsymbol() for details. Raises error.LookupError if the symbol is an + an ambiguous nodeid prefix. + """ try: revsymbol(repo, symbol) return True