author | Bryan O'Sullivan <bos@serpentine.com> |
Fri, 23 Sep 2005 07:36:30 -0700 | |
changeset 1327 | 085e3fc189b6 |
parent 1324 | 77cd8068dbf4 |
child 1328 | 04ed65045bcc |
--- a/mercurial/changelog.py Thu Sep 22 23:38:04 2005 -0700 +++ b/mercurial/changelog.py Fri Sep 23 07:36:30 2005 -0700 @@ -22,7 +22,7 @@ manifest = bin(l[0]) user = l[1] date = l[2].split(' ') - time = int(date.pop(0)) + time = float(date.pop(0)) try: # various tools did silly things with the time zone field. timezone = int(date[0])