diff --git a/runner.py b/runner.py index b2997fb..72bc184 100644 --- a/runner.py +++ b/runner.py @@ -322,7 +322,7 @@ def _get_branch_status(path: str) -> str: @staticmethod def _print_process_header(path: str, command: str, failed: bool, code: int): path = f'{Runner._get_formatted_path(path)}{RESET}' - command = f'{BLACK}{BKG_WHITE}{utils.GLYPHS[")"]} {RESET}{BKG_WHITE}{BLACK}{utils.GLYPHS["terminal"]} {BOLD}{command} {RESET}{WHITE}{utils.GLYPHS[')']}{RESET}' + command = f'{BKG_WHITE}{BLACK} {utils.GLYPHS["terminal"]} {BOLD}{command} {RESET}{WHITE}{utils.GLYPHS[")"]}{RESET}' code = f'{RED + utils.GLYPHS["failed"] if failed else GREEN + utils.GLYPHS["finished"]}{RESET} {f"{RESET}{RED}Code: {BOLD}{code}{RESET}" if failed else ""} {RESET}' print(f'{path} {command} {code}')