From 9975d82d7fa215e4af2bf42a0b9ddf8005fd7da8 Mon Sep 17 00:00:00 2001 From: CoffeeStraw Date: Fri, 9 Apr 2021 12:25:17 +0200 Subject: [PATCH] Minor output improvement --- src/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.py b/src/main.py index 017aec5..7c2faf2 100644 --- a/src/main.py +++ b/src/main.py @@ -168,12 +168,12 @@ def main(): # Check for errors if "error" in login_res_text: print( - f"{Fore.RED}[ERROR]{Style.RESET_ALL} VVVVID è attualmente in manutenzione, controllare il suo stato sul sito e riprovare." + f"\n{Fore.RED}[ERROR]{Style.RESET_ALL} VVVVID è attualmente in manutenzione, controllare il suo stato sul sito e riprovare." ) sys.exit(-1) if "access denied" in login_res_text: print( - f"{Fore.RED}[ERROR]{Style.RESET_ALL} VVVVID è accessibile solo in Italia 🍕 \n\n... Pss, puoi usare una VPN 😏" + f"\n{Fore.RED}[ERROR]{Style.RESET_ALL} VVVVID è accessibile solo in Italia 🍕 \n\n... Pss, puoi usare una VPN 😏" ) sys.exit(-1) @@ -193,7 +193,7 @@ def main(): if not at_least_one: print( - f"{Fore.YELLOW}[WARNING]{Style.RESET_ALL} " + f"\n{Fore.YELLOW}[WARNING]{Style.RESET_ALL} " + "Il file downloads_list è vuoto oppure contiene solo righe commentate.\n" + "Per cominciare ad usare il programma, inserire uno o più link.\n\n" + "Per ulteriori informazioni visitate la pagina ufficiale del progetto su GitHub:\nhttps://github.com/CoffeeStraw/VVVVID-Downloader.\n"