diff options
| author | André Erdmann <dywi@mailerd.de> | 2015-07-23 20:20:22 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-07-23 21:19:51 +0200 |
| commit | 872e95eee61d70a0dc0ca4d497643acc855791a2 (patch) | |
| tree | cf75bbf6568012eeffe150318f69c693cd06e132 /kconfiglib.py | |
| parent | a7e0b22c1251c110a0cc0fd30baaada0731b9856 (diff) | |
Fix _FileFeed.peek_next() continuation line handling.
Typo - 'res' should be 'line'.
Only affected .config header reading.
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 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): |
