Skip to content

Commit

Permalink
ANSI escape codes are fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jasursadikov committed Sep 17, 2024
1 parent a41bd8c commit f67374a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)])

Expand Down

0 comments on commit f67374a

Please sign in to comment.