From 3648c8348d839827bbdd64780b8063c65421851a Mon Sep 17 00:00:00 2001 From: Alexander Hayden Date: Fri, 1 Feb 2019 15:13:30 -0500 Subject: Remove bad and update 'check_updates' --- update.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'update.py') diff --git a/update.py b/update.py index c203240..ce45c13 100755 --- a/update.py +++ b/update.py @@ -59,10 +59,11 @@ def check_updates(): print("Checking updates...\nThe following mods have updates available:\n") for mod in latest: + print(f"Checking for updates to {mod[0]}..." + " " * 35,end="\r") resp = requests.get(mod[1]) if not resp.url in old_urls: print(f" -> Found update for {mod[0]}: {resp.url.split('/')[-1]}") - print("\nFinished checking for updates!") + print("Finished checking for updates!" + " " * 35) def read_file(fil): strings = [] -- cgit v1.2.3