diff -r 233f11b544f5 -r 18710802cd49 hgext/convert/monotone.py --- a/hgext/convert/monotone.py Tue Apr 21 14:25:36 2009 +0200 +++ b/hgext/convert/monotone.py Tue Apr 21 16:02:59 2009 +0200 @@ -112,6 +112,8 @@ value = value.replace(r'\"', '"') value = value.replace(r'\\', '\\') certs[name] = value + # Monotone may have subsecond dates: 2005-02-05T09:39:12.364306 + certs["date"] = certs["date"].split('.')[0] return certs # implement the converter_source interface: