mercurial/changelog.py
changeset 1677 11d12bd6e1dc
parent 1402 9d2c2e6b32b5
child 1678 b345cc4c22c0
--- a/mercurial/changelog.py	Tue Dec 06 14:10:38 2005 +0100
+++ b/mercurial/changelog.py	Thu Dec 08 15:12:02 2005 +0100
@@ -11,8 +11,9 @@
 demandload(globals(), "os time util")
 
 class changelog(revlog):
-    def __init__(self, opener):
-        revlog.__init__(self, opener, "00changelog.i", "00changelog.d")
+    def __init__(self, opener, local=True):
+        revlog.__init__(self, opener, "00changelog.i", "00changelog.d",
+                        local=local)
 
     def extract(self, text):
         if not text: