1
0
python-httplib2/ca_certs_locater.py

14 lines
214 B
Python

#
# httplib2 system SSL certificate bundle locator for openSUSE.
#
# Author: Sascha Peilicke <speilicke@suse.com>
#
def get():
return "/etc/ssl/ca-bundle.pem"
if __name__ == "__main__":
print get()