Browse Source

catch http exception

master
ecdsa 13 years ago
parent
commit
4e3c9de1d0
  1. 5
      gui/exchange_rate.py

5
gui/exchange_rate.py

@ -36,7 +36,10 @@ class Exchanger(threading.Thread):
response = connection.getresponse()
if response.reason == httplib.responses[httplib.NOT_FOUND]:
return
response = json.loads(response.read())
try:
response = json.loads(response.read())
except:
return
quote_currencies = {}
try:
for r in response:

Loading…
Cancel
Save