aboutsummaryrefslogtreecommitdiff
path: root/requests/certs.py
diff options
context:
space:
mode:
Diffstat (limited to 'requests/certs.py')
-rw-r--r--requests/certs.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/requests/certs.py b/requests/certs.py
index 8148276..bc00826 100644
--- a/requests/certs.py
+++ b/requests/certs.py
@@ -14,17 +14,10 @@ packaged CA bundle.
import os.path
-certifi = None
-try:
- import certifi
-except ImportError:
- pass
def where():
"""Return the preferred certificate bundle."""
- if certifi:
- return certifi.where()
-
+ # vendored bundle inside Requests
return os.path.join(os.path.dirname(__file__), 'cacert.pem')
if __name__ == '__main__':