##// END OF EJS Templates
convert: fix SVN date parser dropping the final whole second digit
David J. Mellor -
r5617:924fd86f default
parent child Browse files
Show More
@@ -590,7 +590,7 b' class svn_source(converter_source):'
590 # Example SVN datetime. Includes microseconds.
590 # Example SVN datetime. Includes microseconds.
591 # ISO-8601 conformant
591 # ISO-8601 conformant
592 # '2007-01-04T17:35:00.902377Z'
592 # '2007-01-04T17:35:00.902377Z'
593 date = util.parsedate(date[:18] + " UTC", ["%Y-%m-%dT%H:%M:%S"])
593 date = util.parsedate(date[:19] + " UTC", ["%Y-%m-%dT%H:%M:%S"])
594
594
595 log = message and self.recode(message)
595 log = message and self.recode(message)
596 author = author and self.recode(author) or ''
596 author = author and self.recode(author) or ''
General Comments 0
You need to be logged in to leave comments. Login now