From 3310b568431f59d5eba192afde5ee5ef877c6a6a Mon Sep 17 00:00:00 2001 From: localhost_frssoft Date: Tue, 11 Jul 2023 01:30:21 +0300 Subject: [PATCH] correct condition in y/n question --- src/fw_tracks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw_tracks.py b/src/fw_tracks.py index 090804f..e56876b 100644 --- a/src/fw_tracks.py +++ b/src/fw_tracks.py @@ -51,7 +51,7 @@ def list_tracks(pg=None, search=None, tag=None, library=None): elif select == 'Play all pages': if tracks_count > 1000: yn = input('WARNING: you really want add more than 1000 tracks? (y/[n])\n').lower() - if yn in ('', 'n'): + if yn != 'y': return count_loaded = 0 while tracks_count > count_loaded: