##// END OF EJS Templates
hbisect: more consistent variable name
Alexander Krauss -
r14894:3db92e39 default
parent child Browse files
Show More
@@ -43,8 +43,8 b' def bisect(changelog, state):'
43 43 ancestors[rev] = []
44 44
45 45 # clear good revs from array
46 for node in goodrevs:
47 ancestors[node] = None
46 for rev in goodrevs:
47 ancestors[rev] = None
48 48 for rev in xrange(len(changelog), goodrev, -1):
49 49 if ancestors[rev] is None:
50 50 for prev in clparents(rev):
General Comments 0
You need to be logged in to leave comments. Login now