summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-01-19 19:14:00 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-01-19 19:14:00 +0100
commitc3142e821e990a1f1a5eb75cefb8244b553db094 (patch)
treee32640155dc54d6efcea7503003501380c46e74d /kconfiglib.py
parentc800f70f4b3e96f1e6e19bc3ddcf9f0353721b7b (diff)
Rearrange _T_HELP code
Bit clearer.
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 424794f..c52b156 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1745,10 +1745,11 @@ class Kconfig(object):
self._reuse_line = True # "Unget" the line
break
+ help_lines = [_deindent(line, indent).rstrip()]
+
# The help text goes on till the first non-empty line with less
# indent
- help_lines = [_deindent(line, indent).rstrip()]
while 1:
line = self._next_help_line()