##// END OF EJS Templates
convert: process splicemap in sorted order
Mads Kiilerich -
r18372:5965997b default
parent child Browse files
Show More
@@ -147,7 +147,7 b' class converter(object):'
147 map contains valid revision identifiers and merge the new
147 map contains valid revision identifiers and merge the new
148 links in the source graph.
148 links in the source graph.
149 """
149 """
150 for c in splicemap:
150 for c in sorted(splicemap):
151 if c not in parents:
151 if c not in parents:
152 if not self.dest.hascommit(self.map.get(c, c)):
152 if not self.dest.hascommit(self.map.get(c, c)):
153 # Could be in source but not converted during this run
153 # Could be in source but not converted during this run
General Comments 0
You need to be logged in to leave comments. Login now