FIX: This was wrapping...

This commit is contained in:
Julien Palard 2021-01-19 16:30:31 +01:00
parent 0a763d075e
commit e18c42fad0
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ async def show_progression(results):
print(
"\033[0J", # ED (Erase In Display) with parameter 0:
# Erase from the active position to the end of the screen.
truncate(status_line, max_width=columns),
truncate(status_line, max_width=columns - 1),
end="\r",
)
finally: