From b40861150b66fa11a4a6faa0a6718d907b13b068 Mon Sep 17 00:00:00 2001 From: Michael Bennett Date: Sat, 4 Feb 2017 12:54:28 -0500 Subject: [PATCH] Fixed a NoneType error being thrown in libcloud.security when certify is installed (LIBCLOUD-893) --- libcloud/security.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcloud/security.py b/libcloud/security.py index bb8a303d95..afd9a9304a 100644 --- a/libcloud/security.py +++ b/libcloud/security.py @@ -55,7 +55,7 @@ if has_certifi and USE_CERTIFI: certifi_ca_bundle_path = certifi.where() - CA_CERTS_PATH.insert(0, certifi_ca_bundle_path) + CA_CERTS_PATH = certifi_ca_bundle_path # Allow user to explicitly specify which CA bundle to use, using an environment # variable