changeset 3418:f2de6b6bc57a

imported patch b1
author Matt Mackall <mpm@selenic.com>
date Tue, 17 Oct 2006 18:01:14 -0500
parents d2b55e3c4e25
children cc9c31b07c2c
files mercurial/changelog.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/changelog.py	Sun Oct 15 16:18:09 2006 -0500
+++ b/mercurial/changelog.py	Tue Oct 17 18:01:14 2006 -0500
@@ -59,7 +59,7 @@
         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')