From 3e20f52b8ae0f7ef0f9490761eb0f42efdea1e10 Mon Sep 17 00:00:00 2001 From: Zvonimir Sabljic Date: Mon, 18 Sep 2023 19:18:00 -0700 Subject: [PATCH] Changed log --- pilot/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pilot/main.py b/pilot/main.py index d08d2d7..973c153 100644 --- a/pilot/main.py +++ b/pilot/main.py @@ -11,6 +11,8 @@ from termcolor import colored from helpers.ipc import IPCClient from const.ipc import MESSAGE_TYPE from utils.utils import json_serial +from fabulous.color import red + from helpers.Project import Project from utils.arguments import get_arguments from utils.exit import exit_gpt_pilot @@ -85,9 +87,9 @@ if __name__ == "__main__": except KeyboardInterrupt: exit_gpt_pilot() except Exception as e: - print(colored('---------- GPT PILOT EXITING WITH ERROR ----------', 'red')) + print(red('---------- GPT PILOT EXITING WITH ERROR ----------')) traceback.print_exc() - print(colored('--------------------------------------------------', 'red')) + print(red('--------------------------------------------------')) exit_gpt_pilot() finally: sys.exit(0)