##// END OF EJS Templates
convcmd: make a copy of heads before mutating it...
Augie Fackler -
r37905:73ca1c5e default
parent child Browse files
Show More
@@ -234,7 +234,7 b' class converter(object):'
234 def walktree(self, heads):
234 def walktree(self, heads):
235 '''Return a mapping that identifies the uncommitted parents of every
235 '''Return a mapping that identifies the uncommitted parents of every
236 uncommitted changeset.'''
236 uncommitted changeset.'''
237 visit = heads
237 visit = list(heads)
238 known = set()
238 known = set()
239 parents = {}
239 parents = {}
240 numcommits = self.source.numcommits()
240 numcommits = self.source.numcommits()
General Comments 0
You need to be logged in to leave comments. Login now