From 6325662b9cc930adda3d596823a1cce5eb439711 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 2 May 2021 15:49:43 -0700 Subject: Fix log colors so it isn't black on black in macOS --- cli/onionshare_cli/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/onionshare_cli/common.py b/cli/onionshare_cli/common.py index e7293675..7ec31ec6 100644 --- a/cli/onionshare_cli/common.py +++ b/cli/onionshare_cli/common.py @@ -291,7 +291,7 @@ class Common: """ if self.verbose: timestamp = time.strftime("%b %d %Y %X") - final_msg = f"{Fore.BLACK + Style.BRIGHT}[{timestamp}]{Style.RESET_ALL} {Fore.WHITE + Style.DIM}{module}.{func}{Style.RESET_ALL}" + final_msg = f"{Fore.LIGHTBLACK_EX + Style.DIM}[{timestamp}]{Style.RESET_ALL} {Fore.WHITE + Style.DIM}{module}.{func}{Style.RESET_ALL}" if msg: final_msg = ( f"{final_msg}{Fore.WHITE + Style.DIM}: {msg}{Style.RESET_ALL}" -- cgit v1.2.3-54-g00ecf