mercurial/filelog.py
changeset 1677 11d12bd6e1dc
parent 1541 bf4e7ef08741
child 1678 b345cc4c22c0
--- a/mercurial/filelog.py	Tue Dec 06 14:10:38 2005 +0100
+++ b/mercurial/filelog.py	Thu Dec 08 15:12:02 2005 +0100
@@ -11,10 +11,11 @@
 demandload(globals(), "bdiff")
 
 class filelog(revlog):
-    def __init__(self, opener, path):
+    def __init__(self, opener, path, local=True):
         revlog.__init__(self, opener,
                         os.path.join("data", self.encodedir(path + ".i")),
-                        os.path.join("data", self.encodedir(path + ".d")))
+                        os.path.join("data", self.encodedir(path + ".d")),
+                        local=local)
 
     # This avoids a collision between a file named foo and a dir named
     # foo.i or foo.d