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):
try:
connection = httplib.HTTPSConnection('blockchain.info')
connection = httplib.HTTPConnection('blockchain.info')
connection.request("GET", "/ticker")
except:
return

Loading…
Cancel
Save