D7325: index: use `index.rev` in `revlog.rev`

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Sat Nov 9 10:57:32 EST 2019


Closed by commit rHGd704e3c3b051: index: use `index.rev` in `revlog.rev` (authored by marmoute).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7325?vs=17884&id=17890

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7325/new/

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

AFFECTED FILES
  mercurial/revlog.py

CHANGE DETAILS

diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -687,7 +687,7 @@
 
     def rev(self, node):
         try:
-            return self.index.nodemap[node]
+            return self.index.rev(node)
         except TypeError:
             raise
         except error.RevlogError:



To: marmoute, indygreg, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list