changeset 14894:3db92e3948d5

hbisect: more consistent variable name
author Alexander Krauss <krauss@in.tum.de>
date Sun, 17 Jul 2011 00:35:31 +0200
parents 01e0091679c0
children a35d6f822e3e
files mercurial/hbisect.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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):