contrib/perf.py
changeset 30426 605e3b126d46
parent 30405 e77e8876886f
child 30451 94ca0e13d1fc
--- a/contrib/perf.py	Thu Nov 17 20:57:09 2016 +0900
+++ b/contrib/perf.py	Thu Nov 17 08:52:52 2016 -0800
@@ -781,9 +781,9 @@
         if opts['alldata']:
             # Load revisions associated with changeset.
             ctx = repo[rev]
-            mtext = repo.manifest.revision(ctx.manifestnode())
+            mtext = repo.manifestlog._revlog.revision(ctx.manifestnode())
             for pctx in ctx.parents():
-                pman = repo.manifest.revision(pctx.manifestnode())
+                pman = repo.manifestlog._revlog.revision(pctx.manifestnode())
                 textpairs.append((pman, mtext))
 
             # Load filelog revisions by iterating manifest delta.