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
No known key found for this signature in database
GPG Key ID: 0F3C35D8E9887737

View File

@ -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()