diff -r 11d12bd6e1dc -r b345cc4c22c0 mercurial/manifest.py --- 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