summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-08-05 16:23:37 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-08-05 16:23:37 +0200
commit43ec3a569916a83677d21fbd21e5028a9810919e (patch)
treef085e0588cd542992bf70f076f85689462471c53 /bin
parent1f9784dbdb9ee4f0d2e10453e16c91a247af2547 (diff)
remove verbose debug
Diffstat (limited to 'bin')
-rw-r--r--bin/updater.py5
1 files changed, 1 insertions, 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))