From 513951de55fd7b0311019b3c932befd395107d4f Mon Sep 17 00:00:00 2001 From: John Engelke <52300928+jpl-jengelke@users.noreply.github.com> Date: Thu, 28 Apr 2022 08:22:51 -0700 Subject: [PATCH] Issue #983: Update terminal color logic to fit ANSI base specs. --- exotic/exotic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exotic/exotic.py b/exotic/exotic.py index 346adb6c..0e041b08 100644 --- a/exotic/exotic.py +++ b/exotic/exotic.py @@ -152,9 +152,9 @@ def log_info(string, warn=False, error=False): if error: - print(f"\033[91m {string}\033[00m") + print(f"\033[31m {string}\033[0m") elif warn: - print(f"\033[33m {string}\033[00m") + print(f"\033[33m {string}\033[0m") else: print(string) log.debug(string)