--- a/mercurial/manifest.py Tue Dec 06 14:10:38 2005 +0100
+++ b/mercurial/manifest.py Thu Dec 08 15:12:02 2005 +0100
@@ -12,10 +12,11 @@
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