Mercurial > hg-stable
changeset 40:5f87633e1ea2
Date is an int as a string in changelog
author | mpm@selenic.com |
---|---|
date | Sat, 07 May 2005 16:33:09 -0800 |
parents | adf70fffca9f |
children | df3f46253878 |
files | mercurial/hg.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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()