revlog: use revlog.display_id in ambiguity errors
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 03 May 2021 12:24:08 +0200
changeset 47159 1ec64f59dc27
parent 47158 e1936ae27897
child 47160 0a66eef0ed97
revlog: use revlog.display_id in ambiguity errors Differential Revision: https://phab.mercurial-scm.org/D10585
mercurial/revlog.py
--- a/mercurial/revlog.py	Mon May 03 12:23:58 2021 +0200
+++ b/mercurial/revlog.py	Mon May 03 12:24:08 2021 +0200
@@ -1400,7 +1400,7 @@
             # fast path: for unfiltered changelog, radix tree is accurate
             if not getattr(self, 'filteredrevs', None):
                 raise error.AmbiguousPrefixLookupError(
-                    id, self._indexfile, _(b'ambiguous identifier')
+                    id, self.display_id, _(b'ambiguous identifier')
                 )
             # fall through to slow path that filters hidden revisions
         except (AttributeError, ValueError):
@@ -1426,7 +1426,7 @@
                         self._pcache[id] = nl[0]
                         return nl[0]
                     raise error.AmbiguousPrefixLookupError(
-                        id, self._indexfile, _(b'ambiguous identifier')
+                        id, self.display_id, _(b'ambiguous identifier')
                     )
                 if maybewdir:
                     raise error.WdirUnsupported