summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kconfiglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 0fb4fcd..665bf19 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -705,7 +705,7 @@ class Config():
c = s[i]
if c == quote:
break
- elif c == "\\":
+ if c == "\\":
if i + 1 >= strlen:
_tokenization_error(s, strlen, filename, linenr)
value += s[i + 1]