From fbaec93d7d7c8098501608db94162d0c890a3c6b Mon Sep 17 00:00:00 2001 From: Kilian Cavalotti Date: Sun, 2 Feb 2025 11:38:51 -0800 Subject: [PATCH] Update comictaggerlib/cli.py Make sure `results` exists before checking for `online_results` Co-authored-by: Timmy Welch --- comictaggerlib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comictaggerlib/cli.py b/comictaggerlib/cli.py index 64896b5..94965a4 100644 --- a/comictaggerlib/cli.py +++ b/comictaggerlib/cli.py @@ -121,7 +121,7 @@ class CLI: self.post_process_matches(match_results) - if self.config.Auto_Tag__online and results[-1].online_results != []: + if self.config.Auto_Tag__online and results and results[-1].online_results != []: self.output( f"\nFiles tagged with metadata provided by {self.current_talker().name} {self.current_talker().website}", )