# HG changeset patch # User Paul Aurich # Date 1240469144 -7200 # Node ID da9f3866c637475fe697a9d949b5597886714d72 # Parent d883bfbd2e60ce7acd30649443f5303015a596b3 convert/mtn: mtn does not record timezones, mark dates as UTC (issue1624) diff -r d883bfbd2e60 -r da9f3866c637 hgext/convert/monotone.py --- a/hgext/convert/monotone.py Wed Apr 22 10:25:05 2009 +0200 +++ b/hgext/convert/monotone.py Thu Apr 23 08:45:44 2009 +0200 @@ -107,7 +107,8 @@ value = value.replace(r'\\', '\\') certs[name] = value # Monotone may have subsecond dates: 2005-02-05T09:39:12.364306 - certs["date"] = certs["date"].split('.')[0] + # and all times are stored in UTC + certs["date"] = certs["date"].split('.')[0] + " UTC" return certs # implement the converter_source interface: