##// END OF EJS Templates
[RFC] convert: fix --datesort...
Kirill Smelkov -
r5656:b940260c default
parent child Browse files
Show More
@@ -145,7 +145,8 b' class converter(object):'
145 if pl:
145 if pl:
146 depth[n] = max([depth[p] for p in pl]) + 1
146 depth[n] = max([depth[p] for p in pl]) + 1
147
147
148 s = [(depth[n], self.commitcache[n].date, n) for n in s]
148 s = [(depth[n], util.parsedate(self.commitcache[n].date), n)
149 for n in s]
149 s.sort()
150 s.sort()
150 s = [e[2] for e in s]
151 s = [e[2] for e in s]
151
152
General Comments 0
You need to be logged in to leave comments. Login now