diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2012-12-15 07:34:14 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2012-12-15 07:34:14 +0100 |
| commit | fa682f8945ec48032c3c42eb41e364b9349fdadd (patch) | |
| tree | 7981e9cad6714658c55fafcab36076838ef5c9c4 /kconfiglib.py | |
| parent | acdd80de097e528a95c5918d88de692e5c5f9965 (diff) | |
Remove redundant elif.
Diffstat (limited to 'kconfiglib.py')
| -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. |
