contrib/debugshell.py
changeset 30375 11b8b740d54a
parent 29397 844f72885fb9
child 32337 46ba2cdda476
--- a/contrib/debugshell.py	Fri Nov 11 01:20:13 2016 -0800
+++ b/contrib/debugshell.py	Thu Nov 10 02:13:19 2016 -0800
@@ -18,7 +18,7 @@
         'mercurial': mercurial,
         'repo': repo,
         'cl': repo.changelog,
-        'mf': repo.manifest,
+        'mf': repo.manifestlog,
     }
 
     code.interact(msg, local=objects)
@@ -27,7 +27,7 @@
     import IPython
 
     cl = repo.changelog
-    mf = repo.manifest
+    mf = repo.manifestlog
     cl, mf # use variables to appease pyflakes
 
     IPython.embed()