Date is an int as a string in changelog
authormpm@selenic.com
Sat, 07 May 2005 16:33:09 -0800
changeset 40 5f87633e1ea2
parent 39 adf70fffca9f
child 41 df3f46253878
Date is an int as a string in changelog
mercurial/hg.py
--- a/mercurial/hg.py	Sat May 07 16:32:31 2005 -0800
+++ b/mercurial/hg.py	Sat May 07 16:33:09 2005 -0800
@@ -110,7 +110,7 @@
 
     def extract(self, text):
         if not text:
-            return (nullid, "", 0, [], "")
+            return (nullid, "", "0", [], "")
         last = text.index("\n\n")
         desc = text[last + 2:]
         l = text[:last].splitlines()