diff contrib/perf.py @ 30379:d79c141fdf41

manifest: remove usages of manifest.read Now that the two manifestctx implementations have working read() functions, let's remove the existing uses of manifest.read and drop the function.
author Durham Goode <durham@fb.com>
date Thu, 10 Nov 2016 02:13:19 -0800
parents 6ecad4b73569
children 10c924596e5c
line wrap: on
line diff
--- a/contrib/perf.py	Thu Nov 10 02:13:19 2016 -0800
+++ b/contrib/perf.py	Thu Nov 10 02:13:19 2016 -0800
@@ -567,7 +567,7 @@
     t = ctx.manifestnode()
     def d():
         repo.manifest.clearcaches()
-        repo.manifest.read(t)
+        repo.manifestlog[t].read()
     timer(d)
     fm.end()