Stop deleting blank space in errors
This commit is contained in:
parent
f1507a36f1
commit
d6131ad53e
1 changed files with 1 additions and 1 deletions
|
|
@ -390,7 +390,7 @@ class Harness:
|
|||
for line in lines[: rows - 3]:
|
||||
print(line[:cols] + "\r")
|
||||
else:
|
||||
wrapper = textwrap.TextWrapper(width=cols)
|
||||
wrapper = textwrap.TextWrapper(width=cols, drop_whitespace=False)
|
||||
lines = [line for error in self.errors for line in wrapper.wrap(error)]
|
||||
for line in lines[: rows - 3]:
|
||||
print(line + "\r")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue