readability of yellow notes on white terminals :)

This commit is contained in:
Edwin Eefting
2023-09-26 18:17:34 +02:00
parent 6e5a6764c5
commit 54e590175d

View File

@ -36,7 +36,7 @@ class LogConsole:
def warning(self, txt): def warning(self, txt):
self.clear_progress() self.clear_progress()
if self.colorama: 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: else:
print(" NOTE: " + txt) print(" NOTE: " + txt)
sys.stdout.flush() sys.stdout.flush()