diff --git a/lib/exchange_rate.py b/lib/exchange_rate.py index a4137105..bde5f52d 100644 --- a/lib/exchange_rate.py +++ b/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