# HG changeset patch # User mpm@selenic.com # Date 2005-05-08 00:33:09 # Node ID 5f87633e1ea220d4ceb0e6b2a0e0475aa00d7871 # Parent adf70fffca9f1c872e7dd39d16b786bf7b6911c0 Date is an int as a string in changelog diff --git a/mercurial/hg.py b/mercurial/hg.py --- a/mercurial/hg.py +++ b/mercurial/hg.py @@ -110,7 +110,7 @@ class changelog(revlog): 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()