##// END OF EJS Templates
convert/mtn: mtn does not record timezones, mark dates as UTC (issue1624)
Paul Aurich -
r8125:da9f3866 default
parent child Browse files
Show More
@@ -107,7 +107,8 b' class monotone_source(converter_source, '
107 value = value.replace(r'\\', '\\')
107 value = value.replace(r'\\', '\\')
108 certs[name] = value
108 certs[name] = value
109 # Monotone may have subsecond dates: 2005-02-05T09:39:12.364306
109 # Monotone may have subsecond dates: 2005-02-05T09:39:12.364306
110 certs["date"] = certs["date"].split('.')[0]
110 # and all times are stored in UTC
111 certs["date"] = certs["date"].split('.')[0] + " UTC"
111 return certs
112 return certs
112
113
113 # implement the converter_source interface:
114 # implement the converter_source interface:
General Comments 0
You need to be logged in to leave comments. Login now