mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-22 09:09:20 +02:00
correct condition in y/n question
This commit is contained in:
parent
eaf293e519
commit
3310b56843
|
@ -51,7 +51,7 @@ def list_tracks(pg=None, search=None, tag=None, library=None):
|
||||||
elif select == 'Play all pages':
|
elif select == 'Play all pages':
|
||||||
if tracks_count > 1000:
|
if tracks_count > 1000:
|
||||||
yn = input('WARNING: you really want add more than 1000 tracks? (y/[n])\n').lower()
|
yn = input('WARNING: you really want add more than 1000 tracks? (y/[n])\n').lower()
|
||||||
if yn in ('', 'n'):
|
if yn != 'y':
|
||||||
return
|
return
|
||||||
count_loaded = 0
|
count_loaded = 0
|
||||||
while tracks_count > count_loaded:
|
while tracks_count > count_loaded:
|
||||||
|
|
Loading…
Reference in New Issue