summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 6fbd733..3b82d68 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -3132,7 +3132,7 @@ class _FileFeed(object):
line = self.lines[linenr]
while line.endswith("\\\n"):
linenr += 1
- line = res[:-2] + self.lines[linenr]
+ line = line[:-2] + self.lines[linenr]
return line
def unget(self):