From 9a0acd3717c4fc1aa5212d72838590b125100a3a Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 28 Feb 2024 07:45:56 +0300 Subject: [PATCH] generate.py: error logging should be red If we're going to have colors at all, they should be consistent. --- generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate.py b/generate.py index 18e334d..9571d7d 100755 --- a/generate.py +++ b/generate.py @@ -25,7 +25,7 @@ def create_thumbnail(animal): # check if the file has been downloaded if not os.path.isfile(image_path): logger.error( - Fore.YELLOW + f"> Missing image for {animal['common_name']}." + Fore.RESET + Fore.RED + f"> Missing image for {animal['common_name']}." + Fore.RESET ) # check if we already have a thumbnail elif os.path.isfile(thumbnail_path):