Update console print message in tv.py

This commit is contained in:
Fede14 2024-02-27 18:09:59 +01:00
parent f11b00363f
commit c0ad4fecc0

View File

@ -150,7 +150,8 @@ def main_dw_tv(tv_id, tv_name, version, domain):
token = get_token(tv_id, domain)
num_season_find = get_info_tv(tv_id, tv_name, version, domain)
console.print(f"[blue]Season find: [red]{num_season_find}")
console.print("\n[green]Insert season [red]number [yellow]or [red](*) [green]to download all seasons [yellow]or [red][1-2] [green]for a range of season")
console.print(f"\n[blue]Season find: [red]{num_season_find}")
season_select = str(msg.ask("\n[green]Insert season number: "))
if "[" in season_select:
start, end = map(int, season_select[1:-1].split('-'))