# HG changeset patch # User Alexander Krauss # Date 1310855731 -7200 # Node ID 3db92e3948d5f23a842c9f1e9940233c9bf5e699 # Parent 01e0091679c04622fc4e86d760f21d5d72b887b2 hbisect: more consistent variable name diff -r 01e0091679c0 -r 3db92e3948d5 mercurial/hbisect.py --- a/mercurial/hbisect.py Sat Jul 16 12:22:40 2011 +0200 +++ b/mercurial/hbisect.py Sun Jul 17 00:35:31 2011 +0200 @@ -43,8 +43,8 @@ ancestors[rev] = [] # clear good revs from array - for node in goodrevs: - ancestors[node] = None + for rev in goodrevs: + ancestors[rev] = None for rev in xrange(len(changelog), goodrev, -1): if ancestors[rev] is None: for prev in clparents(rev):