summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2012-12-15 07:34:14 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2012-12-15 07:34:14 +0100
commitfa682f8945ec48032c3c42eb41e364b9349fdadd (patch)
tree7981e9cad6714658c55fafcab36076838ef5c9c4
parentacdd80de097e528a95c5918d88de692e5c5f9965 (diff)
Remove redundant elif.
-rw-r--r--kconfiglib.py2
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.