# HG changeset patch # User mpm@selenic.com # Date 1124839154 25200 # Node ID 2e8b8da9a86e6b0268921b147e3d2375b782a8a2 # Parent d74bcc61be6fe991ac0c15dd3fff05ecf909b445 Deal with repos with missing timezones diff --git a/mercurial/hg.py b/mercurial/hg.py --- a/mercurial/hg.py +++ b/mercurial/hg.py @@ -272,6 +272,8 @@ class changelog(revlog): manifest = bin(l[0]) user = l[1] date = l[2] + if " " not in date: + date += " 0" # some tools used -d without a timezone files = l[3:] return (manifest, user, date, files, desc)