diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-11-28 15:04:18 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-11-28 15:04:18 +0100 |
| commit | f95ac89944bdca833c5398967c274ab520c2ce7b (patch) | |
| tree | d43cc2aac5b7a2e7b3a387bc0f09d9354f764a31 | |
| parent | b3f0061c61da5c9dd604e580e6f220c4a7bd44fa (diff) | |
menuconfig: Fix variable name typo in comment
| -rwxr-xr-x | menuconfig.py | 4 |
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): |
