diff options
author | Alexander Hayden <alexhayden25@gmail.com> | 2019-02-08 18:57:08 -0500 |
---|---|---|
committer | Alexander Hayden <alexhayden25@gmail.com> | 2019-02-08 18:57:08 -0500 |
commit | 195e543ae915d676d25203a9d5e8aba1c3ff17b5 (patch) | |
tree | 19eb2fcb6093503828319975608c076692f744b5 /update.py | |
parent | 8005ef8bd1bdee8f41ff22d331bdb7eedd44621e (diff) | |
download | modpackman-195e543ae915d676d25203a9d5e8aba1c3ff17b5.tar.gz modpackman-195e543ae915d676d25203a9d5e8aba1c3ff17b5.zip |
Make it not die on 'check_updates'
Diffstat (limited to 'update.py')
-rwxr-xr-x | update.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -121,7 +121,7 @@ def check_updates(args): if resp.url in old_urls: print(" No updates") else: - print(" Found update: {resp.url.split('/')[-1]}".format(resp=resp)) + print(" Found update: " + resp.url.split('/')[-1]) print("Finished checking for updates!") |