From: Shivaram Lingamneni Date: Thu, 19 Apr 2012 21:27:26 +0000 (-0700) Subject: add the FreeBSD certificate bundle path X-Git-Tag: v0.12.0~49^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1528ce3be5a0798d509ae774ac7c3667b17ef29;p=services%2Fpython-requests.git add the FreeBSD certificate bundle path --- 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():