##// END OF EJS Templates
Some repos represent a date as a float.
Bryan O'Sullivan -
r1327:085e3fc1 default
parent child Browse files
Show More
@@ -22,7 +22,7 b' class changelog(revlog):'
22 manifest = bin(l[0])
22 manifest = bin(l[0])
23 user = l[1]
23 user = l[1]
24 date = l[2].split(' ')
24 date = l[2].split(' ')
25 time = int(date.pop(0))
25 time = float(date.pop(0))
26 try:
26 try:
27 # various tools did silly things with the time zone field.
27 # various tools did silly things with the time zone field.
28 timezone = int(date[0])
28 timezone = int(date[0])
General Comments 0
You need to be logged in to leave comments. Login now