Mercurial > public > mercurial-scm > hg-stable
diff mercurial/changelog.py @ 1364:0f25830f6bc3
Fix data reported for the nullid changeset
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 29 Sep 2005 15:18:32 -0700 |
parents | 085e3fc189b6 |
children | cf9a1233738a |
line wrap: on
line diff
--- a/mercurial/changelog.py Thu Sep 29 13:20:03 2005 -0700 +++ b/mercurial/changelog.py Thu Sep 29 15:18:32 2005 -0700 @@ -15,7 +15,7 @@ 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()