mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
ConnectTimeout multiple inheritance
This commit is contained in:
@@ -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
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user