imported patch b1
authorMatt Mackall <mpm@selenic.com>
Tue, 17 Oct 2006 18:01:14 -0500
changeset 3427 f2de6b6bc57a
parent 3407 d2b55e3c4e25
child 3428 cc9c31b07c2c
imported patch b1
mercurial/changelog.py
--- a/mercurial/changelog.py
+++ b/mercurial/changelog.py
@@ -59,7 +59,7 @@ class changelog(revlog):
         changelog v0 doesn't use extra
         """
         if not text:
-            return (nullid, "", (0, 0), [], "")
+            return (nullid, "", (0, 0), [], "", {})
         last = text.index("\n\n")
         desc = text[last + 2:]
         l = text[:last].split('\n')