ConnectTimeout multiple inheritance

This commit is contained in:
Kevin Burke
2014-08-24 19:56:57 -07:00
parent f0b9b60f62
commit 8f9ce13e43
+2 -2
View File
@@ -51,8 +51,8 @@ class Timeout(RequestException):
"""
class ConnectTimeout(Timeout):
""" The request timed out while trying to connect to the server.
class ConnectTimeout(ConnectionError, Timeout):
"""The request timed out while trying to connect to the server.
Requests that produce this error are safe to retry
"""