hgext/convert/convcmd.py
changeset 5656 b940260c4291
parent 5632 fe2e81229819
child 5794 4c16020d1172
--- a/hgext/convert/convcmd.py	Wed Dec 12 14:44:59 2007 +0100
+++ b/hgext/convert/convcmd.py	Tue Dec 18 14:01:34 2007 -0600
@@ -145,7 +145,8 @@
                 if pl:
                     depth[n] = max([depth[p] for p in pl]) + 1
 
-            s = [(depth[n], self.commitcache[n].date, n) for n in s]
+            s = [(depth[n], util.parsedate(self.commitcache[n].date), n)
+                 for n in s]
             s.sort()
             s = [e[2] for e in s]