From 858d68b491939e0dedb73e107ee6ffdf42bfde82 Mon Sep 17 00:00:00 2001 From: 20xd6 <20xd6@airmail.cc> Date: Fri, 20 Sep 2024 14:01:00 -0400 Subject: [PATCH] Fix if statement from previous commit. --- dir_activities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dir_activities.py b/dir_activities.py index 07f0047..994cb81 100644 --- a/dir_activities.py +++ b/dir_activities.py @@ -4,7 +4,7 @@ def get_all(path): return [name for name in os.listdir(path) if os.path.isdir(os.path.join(path, name))] def has_artist_art(path): - if(os.path.exists(os.path.join(path, "artist.jpg")))or (os.path.exists(os.path.join(path, "artist.png"))) + if(os.path.exists(os.path.join(path, "artist.jpg")))or (os.path.exists(os.path.join(path, "artist.png"))): return True else: return False \ No newline at end of file