From efed684e593fe04b470fe994818bb6dd0f2beb27 Mon Sep 17 00:00:00 2001 From: yiannisha Date: Sat, 23 Oct 2021 19:13:04 +0300 Subject: [PATCH] Fixed minor bugs --- zspotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zspotify.py b/zspotify.py index 56339034..3c04c673 100755 --- a/zspotify.py +++ b/zspotify.py @@ -515,7 +515,7 @@ def search(search_term): # pylint: disable=too-many-locals,too-many-branches else: total_artists = 0 - if total_tracks + total_albums + total_playlists == 0: + if total_tracks + total_albums + total_playlists + total_artists == 0: print("NO RESULTS FOUND - EXITING...") else: selection = str(input("SELECT ITEM(S) BY ID: "))