hgext/convert/convcmd.py
changeset 6099 37cc79a5727a
parent 5934 e495f3f35b2d
child 6100 49c69e1e4aa2
--- a/hgext/convert/convcmd.py	Fri Feb 15 15:44:32 2008 -0200
+++ b/hgext/convert/convcmd.py	Tue Dec 18 14:01:34 2007 -0600
@@ -157,7 +157,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]