diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-06-12 22:31:32 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-06-12 22:31:59 +0200 |
| commit | 35ede24133d87a79e993de2c2e427f03e3de9303 (patch) | |
| tree | 8a2c5275b48c242475cbb2fb4811f4c7002e699d | |
| parent | 8f6cb7a4ffd3731e85d78ebaba715efdfb849acd (diff) | |
Grammar nit
| -rw-r--r-- | kconfiglib.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index e490d48..56f9efa 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -4429,7 +4429,8 @@ def expr_items(expr): def rec(subexpr): if isinstance(subexpr, tuple): - # AND, OR, NOT or relation + # AND, OR, NOT, or relation + rec(subexpr[1]) # NOTs only have a single operand @@ -4567,7 +4568,8 @@ def _make_depend_on(sc, expr): # anyway. if isinstance(expr, tuple): - # AND, OR, NOT or relation + # AND, OR, NOT, or relation + _make_depend_on(sc, expr[1]) # NOTs only have a single operand |
