diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-07 07:54:40 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-07 08:41:31 +0200 |
| commit | 03f199881df7ede128a6d41e32af0b935fd013f1 (patch) | |
| tree | 915b317e55964234b9e152397108bdc66cab4c08 | |
| parent | 5e54e2cd43c5f3c530706291d860ba1bf817986c (diff) | |
T_HELP style nits.
| -rw-r--r-- | kconfiglib.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index dac21f6..9067768 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -1144,7 +1144,6 @@ class Config(object): else: depends_on_expr = _make_and(depends_on_expr, parsed_deps) - elif t0 == T_HELP: # Find first non-empty line and get its indentation @@ -1162,10 +1161,9 @@ class Config(object): line_feeder.go_back() break - help_lines = [_deindent(line, indent)] - # The help text goes on till the first non-empty line with less # indent + help_lines = [_deindent(line, indent)] while 1: line = line_feeder.get_next() if line is None or \ |
