diff options
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index bb40771..a885149 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -959,7 +959,7 @@ class Config(): if t0 == end_marker: return block - elif t0 == T_CONFIG or t0 == T_MENUCONFIG: + if t0 == T_CONFIG or t0 == T_MENUCONFIG: # The tokenizer will automatically allocate a new Symbol object # for any new names it encounters, so we don't need to worry # about that here. |
