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