diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2017-05-26 22:50:43 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2017-05-26 22:50:43 -0400 |
| commit | 1d31b361484b8db673f980d9589900874ec3fde8 (patch) | |
| tree | 1bf3b7027a825646df95f4ba0f310b66770bd2f2 /requests/exceptions.py | |
| parent | 6c41633cfd5634be42c9026f4c206fc8c2bf5d84 (diff) | |
| download | python-requests-1d31b361484b8db673f980d9589900874ec3fde8.tar.gz | |
fix exceptions.py
Diffstat (limited to 'requests/exceptions.py')
| -rw-r--r-- | requests/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requests/exceptions.py b/requests/exceptions.py index 0658e7ec..9684d9e5 100644 --- a/requests/exceptions.py +++ b/requests/exceptions.py @@ -6,7 +6,7 @@ requests.exceptions This module contains the set of Requests' exceptions. """ -from .packages.urllib3.exceptions import HTTPError as BaseHTTPError +from urllib3.exceptions import HTTPError as BaseHTTPError class RequestException(IOError): |
