hbisect: more consistent variable name
authorAlexander Krauss <krauss@in.tum.de>
Sun, 17 Jul 2011 00:35:31 +0200
changeset 14894 3db92e3948d5
parent 14893 01e0091679c0
child 14895 a35d6f822e3e
hbisect: more consistent variable name
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):