summaryrefslogtreecommitdiff
path: root/menuconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-11-28 15:04:18 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-11-28 15:04:18 +0100
commitf95ac89944bdca833c5398967c274ab520c2ce7b (patch)
treed43cc2aac5b7a2e7b3a387bc0f09d9354f764a31 /menuconfig.py
parentb3f0061c61da5c9dd604e580e6f220c4a7bd44fa (diff)
menuconfig: Fix variable name typo in comment
Diffstat (limited to 'menuconfig.py')
-rwxr-xr-xmenuconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/menuconfig.py b/menuconfig.py
index ecaf53a..d4d844e 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -1431,8 +1431,8 @@ def _shown_nodes(menu):
res = []
for choice_node in menu.item.nodes:
for node in rec(choice_node.list):
- # 'node is menu' checks if we're dealing with the current
- # location
+ # 'choice_node is menu' checks if we're dealing with the
+ # current location
if node.item not in seen_syms or choice_node is menu:
res.append(node)
if isinstance(node.item, Symbol):