aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Hayden <alexhayden25@gmail.com>2019-02-08 18:57:08 -0500
committerAlexander Hayden <alexhayden25@gmail.com>2019-02-08 18:57:08 -0500
commit195e543ae915d676d25203a9d5e8aba1c3ff17b5 (patch)
tree19eb2fcb6093503828319975608c076692f744b5
parent8005ef8bd1bdee8f41ff22d331bdb7eedd44621e (diff)
downloadmodpackman-195e543ae915d676d25203a9d5e8aba1c3ff17b5.tar.gz
modpackman-195e543ae915d676d25203a9d5e8aba1c3ff17b5.zip
Make it not die on 'check_updates'
-rwxr-xr-xupdate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.py b/update.py
index 876d3e4..a762db8 100755
--- a/update.py
+++ b/update.py
@@ -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!")