From f67374a3efe0fa4b067482357786e3d13588cefc Mon Sep 17 00:00:00 2001 From: Jasur Sadikov Date: Tue, 17 Sep 2024 12:39:52 +0200 Subject: [PATCH] ANSI escape codes are fixed --- runner.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runner.py b/runner.py index 4454d51..b7e6aa2 100644 --- a/runner.py +++ b/runner.py @@ -114,8 +114,7 @@ def status(self, repos: Dict[str, List[str]]) -> None: else: color = CYAN - filename = self._get_formatted_path(file[3:].strip(), color) - colored_output.append(f'{color}{DIM}{filename}{RESET}') + colored_output.append(self._get_formatted_path(file[3:].strip(), color)) table.add_row([formatted_path, branch, origin_sync, status, ', '.join(colored_output)])