mercurial/manifest.py
changeset 1678 b345cc4c22c0
parent 1677 11d12bd6e1dc
child 1680 c21b54f7f7b8
--- a/mercurial/manifest.py	Thu Dec 08 15:12:02 2005 +0100
+++ b/mercurial/manifest.py	Thu Dec 15 18:04:05 2005 +0100
@@ -12,11 +12,10 @@
 demandload(globals(), "bisect array")
 
 class manifest(revlog):
-    def __init__(self, opener, local=True):
+    def __init__(self, opener):
         self.mapcache = None
         self.listcache = None
-        revlog.__init__(self, opener, "00manifest.i", "00manifest.d",
-                        local=local)
+        revlog.__init__(self, opener, "00manifest.i", "00manifest.d")
 
     def read(self, node):
         if node == nullid: return {} # don't upset local cache