From e18c42fad01c72660e7988c84fa2360a0da8f8cb Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Tue, 19 Jan 2021 16:30:31 +0100 Subject: [PATCH] FIX: This was wrapping... --- ansible_parallel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_parallel.py b/ansible_parallel.py index ef490f3..a3d112d 100644 --- a/ansible_parallel.py +++ b/ansible_parallel.py @@ -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: