b23d18
diff --git a/certs.py b/certs.py
b23d18
index f922b99..43b1b0a 100644
b23d18
--- a/certs.py
b23d18
+++ b/certs.py
b23d18
@@ -14,12 +14,12 @@ packaged CA bundle.
b23d18
 import os.path
b23d18
 
b23d18
 try:
b23d18
+    raise ImportError # force fallback
b23d18
     from certifi import where
b23d18
 except ImportError:
b23d18
     def where():
b23d18
-        """Return the preferred certificate bundle."""
b23d18
-        # vendored bundle inside Requests
b23d18
-        return os.path.join(os.path.dirname(__file__), 'cacert.pem')
b23d18
+        # system CA certs
b23d18
+        return '/etc/pki/tls/certs/ca-bundle.crt'
b23d18
 
b23d18
 if __name__ == '__main__':
b23d18
     print(where())