better downloading supprt
This commit is contained in:
parent
8570384308
commit
d94ab5b7b1
1 changed files with 15 additions and 11 deletions
4
adl.py
4
adl.py
|
@ -215,7 +215,10 @@ def update_question(title, episode, score):
|
|||
# ask if you wanna continus watching
|
||||
def wanna_continu_watch():
|
||||
while True:
|
||||
if not download:
|
||||
yn = color_prommpt("Wanna continue watching? [Y/n]: ")
|
||||
else:
|
||||
yn = color_prommpt("Wanna continue downloading? [Y/n]: ")
|
||||
if yn == "y" or yn == "Y":
|
||||
return True
|
||||
elif yn == "n" or yn == "N":
|
||||
|
@ -223,6 +226,7 @@ def wanna_continu_watch():
|
|||
|
||||
# ask if you wanna update title meta after watch
|
||||
def wanna_update_title_after_watch(title, episode, score):
|
||||
if not download:
|
||||
while True:
|
||||
yn = color_prommpt("Wanna update episode number or update score of watched anime? [N/e/s]: ")
|
||||
if yn == "E" or yn == "e":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue