mercurial/manifest.py
changeset 1677 11d12bd6e1dc
parent 1541 bf4e7ef08741
child 1678 b345cc4c22c0
--- a/mercurial/manifest.py
+++ b/mercurial/manifest.py
@@ -12,10 +12,11 @@ from demandload import *
 demandload(globals(), "bisect array")
 
 class manifest(revlog):
-    def __init__(self, opener):
+    def __init__(self, opener, local=True):
         self.mapcache = None
         self.listcache = None
-        revlog.__init__(self, opener, "00manifest.i", "00manifest.d")
+        revlog.__init__(self, opener, "00manifest.i", "00manifest.d",
+                        local=local)
 
     def read(self, node):
         if node == nullid: return {} # don't upset local cache