diff options
author | k clair <kclair@riseup.net> | 2012-10-09 13:15:53 -0700 |
---|---|---|
committer | k clair <kclair@riseup.net> | 2012-10-09 13:15:53 -0700 |
commit | 3a56a2602da03da0df62602d1e14f407270096bb (patch) | |
tree | e06a077dfefc89df7c6630c676581a29b8e15d8b /requests-0.14.0/debian/python-requests/usr/share/pyshared/requests/certs.py | |
parent | 568720334aa630ea504b2ce3b8c324f0a557d6e6 (diff) |
add previously generated debian packaging files
Diffstat (limited to 'requests-0.14.0/debian/python-requests/usr/share/pyshared/requests/certs.py')
-rw-r--r-- | requests-0.14.0/debian/python-requests/usr/share/pyshared/requests/certs.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/requests-0.14.0/debian/python-requests/usr/share/pyshared/requests/certs.py b/requests-0.14.0/debian/python-requests/usr/share/pyshared/requests/certs.py new file mode 100644 index 0000000..42df2f8 --- /dev/null +++ b/requests-0.14.0/debian/python-requests/usr/share/pyshared/requests/certs.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +ceritfi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem. +""" + +import os +try: + import certifi +except ImportError: + certifi = None + + +def where(): + + if certifi: + return certifi.where() + else: + f = os.path.split(__file__)[0] + return os.path.join(f, 'cacert.pem') + +if __name__ == '__main__': + print(where()) |