Mercurial > public > mercurial-scm > hg
diff mercurial/hg.py @ 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 | a8811676c85a |
children | e825a68d7227 |
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()