Browse Source

disable https because the server requests a client certificate

master
ThomasV 13 years ago
parent
commit
1b19382887
  1. 2
      lib/exchange_rate.py

2
lib/exchange_rate.py

@ -29,7 +29,7 @@ class Exchanger(threading.Thread):
def discovery(self): def discovery(self):
try: try:
connection = httplib.HTTPSConnection('blockchain.info') connection = httplib.HTTPConnection('blockchain.info')
connection.request("GET", "/ticker") connection.request("GET", "/ticker")
except: except:
return return

Loading…
Cancel
Save