diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-04-04 17:29:34 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-04-04 17:30:02 +0200 |
| commit | 9c86dfd60273dc894da1db89220aff8d4de4716e (patch) | |
| tree | 52bc7356f0071305a01e87377c2d6d3bc64262fd | |
| parent | 2259d353426f12d5fa807075fb4727e64331ac8a (diff) | |
Code consistency nit
'is_menuconfig' is set after 'item' in the other cases.
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 5d23452..4e24ab4 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -1966,8 +1966,8 @@ class Kconfig(object): node = MenuNode() node.kconfig = self node.item = choice - node.prompt = node.help = None node.is_menuconfig = True + node.prompt = node.help = None node.parent = parent node.filename = self._filename node.linenr = self._linenr |
