Fix catch socket timeout and error exceptions

This commit is contained in:
Daniel Gräber 2015-02-19 13:23:05 +01:00
parent 63c3e1252c
commit 894086bda2

View File

@ -39,7 +39,10 @@ class curl(object):
except (httplib.HTTPException, socket.error):
return None
try:
return self.con.getresponse()
except (socket.timeout, socket.error):
return None
def __exit__(self, exc_type, exc_value, traceback):
self.con.close()