##// 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 ancestors[rev] = []
43 ancestors[rev] = []
44
44
45 # clear good revs from array
45 # clear good revs from array
46 for node in goodrevs:
46 for rev in goodrevs:
47 ancestors[node] = None
47 ancestors[rev] = None
48 for rev in xrange(len(changelog), goodrev, -1):
48 for rev in xrange(len(changelog), goodrev, -1):
49 if ancestors[rev] is None:
49 if ancestors[rev] is None:
50 for prev in clparents(rev):
50 for prev in clparents(rev):
General Comments 0
You need to be logged in to leave comments. Login now