##// END OF EJS Templates
convert/mtn: handle subsecond commit dates (issue1616)
Paul Aurich -
r8101:d8229670 default
parent child Browse files
Show More
@@ -106,6 +106,8 b' class monotone_source(converter_source, '
106 value = value.replace(r'\"', '"')
106 value = value.replace(r'\"', '"')
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
110 certs["date"] = certs["date"].split('.')[0]
109 return certs
111 return certs
110
112
111 # implement the converter_source interface:
113 # implement the converter_source interface:
General Comments 0
You need to be logged in to leave comments. Login now