hgext/convert/subversion.py
changeset 4848 5e365008360f
parent 4840 a265fe42abe7
child 4873 28b23b9073a8
--- a/hgext/convert/subversion.py	Fri Jul 06 10:22:22 2007 -0700
+++ b/hgext/convert/subversion.py	Fri Jul 06 10:29:09 2007 -0700
@@ -286,7 +286,9 @@
             except IndexError:
                 branch = None
 
-            for path in sorted(orig_paths):
+            paths = orig_paths.keys()
+            paths.sort()
+            for path in paths:
                 # self.ui.write("path %s\n" % path)
                 if path == self.module: # Follow branching back in history
                     ent = orig_paths[path]