From 43ec3a569916a83677d21fbd21e5028a9810919e Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 5 Aug 2013 16:23:37 +0200 Subject: remove verbose debug --- bin/updater.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/updater.py b/bin/updater.py index 5ac44bc13..9e6d7b5a0 100644 --- a/bin/updater.py +++ b/bin/updater.py @@ -59,10 +59,7 @@ class UpdateThread(threading.Thread): url = '%s?%s' % (self.update_url, data) try: - response = urllib.request.urlopen(url, timeout=60) - print('succ!') - print(url) - print(response.read()) + urllib.request.urlopen(url, timeout=60) except urllib.error.HTTPError as e: print('%s: %s' % (url, e)) -- cgit v1.2.3