From 195e543ae915d676d25203a9d5e8aba1c3ff17b5 Mon Sep 17 00:00:00 2001 From: Alexander Hayden Date: Fri, 8 Feb 2019 18:57:08 -0500 Subject: Make it not die on 'check_updates' --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'update.py') 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!") -- cgit v1.2.3