# HG changeset patch # User Matt Mackall # Date 1128032312 25200 # Node ID 0f25830f6bc3f0d36e88ec8c1ae11b62ecd0108b # Parent 8549335d19fc740b6fcbd8ba5d2b205721bc9f33 Fix data reported for the nullid changeset diff --git a/mercurial/changelog.py b/mercurial/changelog.py --- a/mercurial/changelog.py +++ b/mercurial/changelog.py @@ -15,7 +15,7 @@ class changelog(revlog): def extract(self, text): if not text: - return (nullid, "", "0", [], "") + return (nullid, "", (0, 0), [], "") last = text.index("\n\n") desc = text[last + 2:] l = text[:last].splitlines()