# HG changeset patch # User mpm@selenic.com # Date 1115512389 28800 # Node ID 5f87633e1ea220d4ceb0e6b2a0e0475aa00d7871 # Parent adf70fffca9f1c872e7dd39d16b786bf7b6911c0 Date is an int as a string in changelog diff -r adf70fffca9f -r 5f87633e1ea2 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()