fix newline handling

This commit is contained in:
Robert Kaussow 2019-12-02 16:39:01 +01:00
parent c5833fc12a
commit 2b6d61bbfb
1 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ class Annotation:
self._file_handler.seek(current_file_position)
break
final = newline + next_line.replace("#", "").strip()
final = newline + next_line.replace("#", "").rstrip()
# match if empty line or commented empty line
test_line = next_line.replace("#", "").strip()
if len(test_line) == 0:
@ -147,7 +147,7 @@ class Annotation:
continue
else:
newline = ""
print(final)
multiline.append(newline + final)
if parts[2].startswith("$"):