zephyr_mirror: Only strip trailing whitespace.
(imported from commit f349778200e0c2fb410e5e2644c82ba4105f3634)
This commit is contained in:
parent
77bb41b3dd
commit
42e94b2684
|
@ -116,7 +116,7 @@ def unwrap_lines(body):
|
|||
result = ""
|
||||
previous_line = lines[0]
|
||||
for line in lines[1:]:
|
||||
line = line.strip()
|
||||
line = line.rstrip()
|
||||
if (line == "" or
|
||||
previous_line == "" or
|
||||
not re.match(r'^[\w]', line, flags=re.UNICODE) or
|
||||
|
|
Loading…
Reference in a new issue