From e1528ce3be5a0798d509ae774ac7c3667b17ef29 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Thu, 19 Apr 2012 14:27:26 -0700 Subject: [PATCH] add the FreeBSD certificate bundle path --- requests/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requests/utils.py b/requests/utils.py index 0ebcf60..0dd396f 100644 --- a/requests/utils.py +++ b/requests/utils.py @@ -30,6 +30,8 @@ POSSIBLE_CA_BUNDLE_PATHS = [ '/etc/pki/tls/certs/ca-bundle.crt', # Ubuntu and friends: '/etc/ssl/certs/ca-certificates.crt', + # FreeBSD (provided by the ca_root_nss package): + '/usr/local/share/certs/ca-root-nss.crt', ] def get_ca_bundle_path(): -- 2.34.1