diff options
Diffstat (limited to 'update.py')
| -rwxr-xr-x | update.py | 3 | 
1 files changed, 2 insertions, 1 deletions
@@ -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 = []  | 
