2015-10-10 01:04:58 +02:00
|
|
|
--- a/MANIFEST.in
|
|
|
|
+++ b/MANIFEST.in
|
|
|
|
@@ -1 +1 @@
|
|
|
|
-include README.rst LICENSE NOTICE HISTORY.rst test_requests.py requirements.txt requests/cacert.pem
|
|
|
|
+include README.rst LICENSE NOTICE HISTORY.rst test_requests.py requirements.txt
|
|
|
|
--- a/requests/adapters.py
|
|
|
|
+++ b/requests/adapters.py
|
|
|
|
@@ -180,9 +180,6 @@ class HTTPAdapter(BaseAdapter):
|
2013-07-25 14:57:44 +02:00
|
|
|
if not cert_loc:
|
|
|
|
cert_loc = DEFAULT_CA_BUNDLE_PATH
|
|
|
|
|
|
|
|
- if not cert_loc:
|
|
|
|
- raise Exception("Could not find a suitable SSL CA certificate bundle.")
|
|
|
|
-
|
|
|
|
conn.cert_reqs = 'CERT_REQUIRED'
|
|
|
|
conn.ca_certs = cert_loc
|
|
|
|
else:
|
2015-10-10 01:04:58 +02:00
|
|
|
--- a/requests/certs.py
|
|
|
|
+++ b/requests/certs.py
|
2015-07-10 14:18:52 +02:00
|
|
|
@@ -18,8 +18,9 @@ try:
|
|
|
|
except ImportError:
|
2014-09-11 17:26:41 +02:00
|
|
|
def where():
|
|
|
|
"""Return the preferred certificate bundle."""
|
2015-07-10 14:18:52 +02:00
|
|
|
- # vendored bundle inside Requests
|
2014-09-11 17:26:41 +02:00
|
|
|
- return os.path.join(os.path.dirname(__file__), 'cacert.pem')
|
2015-07-10 14:18:52 +02:00
|
|
|
+ # in openSUSE we rely on openssl's default instead of
|
|
|
|
+ # hardcoding stuff elsewhere
|
|
|
|
+ return None
|
2013-07-25 14:57:44 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
print(where())
|