hgext/convert/subversion.py
changeset 5618 6e1a61b14bbf
parent 5554 2147a734dcf9
parent 5617 924fd86f0579
child 5698 b63ef7b1441c
--- a/hgext/convert/subversion.py	Wed Dec 05 12:48:33 2007 +0100
+++ b/hgext/convert/subversion.py	Thu Dec 06 13:11:36 2007 -0800
@@ -610,7 +610,7 @@
             # Example SVN datetime. Includes microseconds.
             # ISO-8601 conformant
             # '2007-01-04T17:35:00.902377Z'
-            date = util.parsedate(date[:18] + " UTC", ["%Y-%m-%dT%H:%M:%S"])
+            date = util.parsedate(date[:19] + " UTC", ["%Y-%m-%dT%H:%M:%S"])
 
             log = message and self.recode(message)
             author = author and self.recode(author) or ''