summaryrefslogtreecommitdiff
path: root/requests/exceptions.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2017-05-26 22:50:43 -0400
committerKenneth Reitz <me@kennethreitz.org>2017-05-26 22:50:43 -0400
commit1d31b361484b8db673f980d9589900874ec3fde8 (patch)
tree1bf3b7027a825646df95f4ba0f310b66770bd2f2 /requests/exceptions.py
parent6c41633cfd5634be42c9026f4c206fc8c2bf5d84 (diff)
downloadpython-requests-1d31b361484b8db673f980d9589900874ec3fde8.tar.gz
fix exceptions.py
Diffstat (limited to 'requests/exceptions.py')
-rw-r--r--requests/exceptions.py2
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):