hgext/convert/subversion.py
changeset 4835 5e365008360f
parent 4825 a265fe42abe7
child 4873 28b23b9073a8
equal deleted inserted replaced
4834:845e0071b704 4835:5e365008360f
   284                 if branch == 'trunk':
   284                 if branch == 'trunk':
   285                     branch = ''
   285                     branch = ''
   286             except IndexError:
   286             except IndexError:
   287                 branch = None
   287                 branch = None
   288 
   288 
   289             for path in sorted(orig_paths):
   289             paths = orig_paths.keys()
       
   290             paths.sort()
       
   291             for path in paths:
   290                 # self.ui.write("path %s\n" % path)
   292                 # self.ui.write("path %s\n" % path)
   291                 if path == self.module: # Follow branching back in history
   293                 if path == self.module: # Follow branching back in history
   292                     ent = orig_paths[path]
   294                     ent = orig_paths[path]
   293                     if ent:
   295                     if ent:
   294                         if ent.copyfrom_path:
   296                         if ent.copyfrom_path: