catch http exception

This commit is contained in:
ecdsa 2013-03-12 22:56:58 +01:00
parent 3d3ec2e7b0
commit 4e3c9de1d0
1 changed files with 4 additions and 1 deletions

View File

@ -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: