##// END OF EJS Templates
Deal with repos with missing timezones
mpm@selenic.com -
r1013:2e8b8da9 default
parent child Browse files
Show More
@@ -272,6 +272,8 b' class changelog(revlog):'
272 272 manifest = bin(l[0])
273 273 user = l[1]
274 274 date = l[2]
275 if " " not in date:
276 date += " 0" # some tools used -d without a timezone
275 277 files = l[3:]
276 278 return (manifest, user, date, files, desc)
277 279
General Comments 0
You need to be logged in to leave comments. Login now