From 54e590175de6118fb99bd469f2c42cac7359abff Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Tue, 26 Sep 2023 18:17:34 +0200 Subject: [PATCH] readability of yellow notes on white terminals :) --- zfs_autobackup/LogConsole.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zfs_autobackup/LogConsole.py b/zfs_autobackup/LogConsole.py index e76959c..a7e799a 100644 --- a/zfs_autobackup/LogConsole.py +++ b/zfs_autobackup/LogConsole.py @@ -36,7 +36,7 @@ class LogConsole: def warning(self, txt): self.clear_progress() if self.colorama: - print(colorama.Fore.YELLOW + colorama.Style.BRIGHT + " NOTE: " + txt + colorama.Style.RESET_ALL) + print(colorama.Fore.YELLOW + colorama.Style.NORMAL + " NOTE: " + txt + colorama.Style.RESET_ALL) else: print(" NOTE: " + txt) sys.stdout.flush()