Browse Source

catch exception raised if url is not reachable

283
thomasv 12 years ago
parent
commit
f14f22636f
  1. 7
      lib/exchange_rate.py

7
lib/exchange_rate.py

@ -28,8 +28,11 @@ class Exchanger(threading.Thread):
self.discovery()
def discovery(self):
connection = httplib.HTTPSConnection('blockchain.info')
connection.request("GET", "/ticker")
try:
connection = httplib.HTTPSConnection('blockchain.info')
connection.request("GET", "/ticker")
except:
return
response = connection.getresponse()
if response.reason == httplib.responses[httplib.NOT_FOUND]:
return

Loading…
Cancel
Save