##// END OF EJS Templates
parsedate: allow '' for epoch
Matt Mackall -
r3807:e43b48f0 default
parent child Browse files
Show More
@@ -1066,6 +1066,8 b' def parsedate(string, formats=None):'
1066 """parse a localized time string and return a (unixtime, offset) tuple.
1066 """parse a localized time string and return a (unixtime, offset) tuple.
1067 The date may be a "unixtime offset" string or in one of the specified
1067 The date may be a "unixtime offset" string or in one of the specified
1068 formats."""
1068 formats."""
1069 if not string:
1070 return 0, 0
1069 if not formats:
1071 if not formats:
1070 formats = defaultdateformats
1072 formats = defaultdateformats
1071 try:
1073 try:
General Comments 0
You need to be logged in to leave comments. Login now