summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2021-05-02 15:49:43 -0700
committerMicah Lee <micah@micahflee.com>2021-05-02 15:49:43 -0700
commit6325662b9cc930adda3d596823a1cce5eb439711 (patch)
tree9f52dbf3165dd630e01be8a8367db8a0bd9423db
parent21b4ae06f03995153e00f31da81f8a203127dace (diff)
downloadonionshare-6325662b9cc930adda3d596823a1cce5eb439711.tar.gz
onionshare-6325662b9cc930adda3d596823a1cce5eb439711.zip
Fix log colors so it isn't black on black in macOS
-rw-r--r--cli/onionshare_cli/common.py2
1 files changed, 1 insertions, 1 deletions
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}"