Repository: libcloud Updated Branches: refs/heads/trunk 92b8a0700 -> 516018d05
Fixed a NoneType error being thrown in libcloud.security when certify is installed (LIBCLOUD-893) Closes #982 Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/516018d0 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/516018d0 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/516018d0 Branch: refs/heads/trunk Commit: 516018d050a5470afe4a07d33d1fcb26d0e1df18 Parents: 92b8a07 Author: Michael Bennett <[email protected]> Authored: Sat Feb 4 12:54:28 2017 -0500 Committer: Anthony Shaw <[email protected]> Committed: Tue Feb 21 17:35:01 2017 +0100 ---------------------------------------------------------------------- libcloud/security.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/516018d0/libcloud/security.py ---------------------------------------------------------------------- diff --git a/libcloud/security.py b/libcloud/security.py index bb8a303..afd9a93 100644 --- a/libcloud/security.py +++ b/libcloud/security.py @@ -55,7 +55,7 @@ else: 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
