forked from pool/python-httplib2
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httplib2?expand=0&rev=39
14 lines
214 B
Python
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()
|