From fa682f8945ec48032c3c42eb41e364b9349fdadd Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 15 Dec 2012 07:34:14 +0100 Subject: Remove redundant elif. --- kconfiglib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kconfiglib.py') 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. -- cgit v1.2.3