python-httplib2/python-httplib2.certfile.patch

17 lines
922 B
Diff
Raw Normal View History

2014-05-25 20:25:44 +00:00
diff -Nur httplib2-0.9.orig/python2/httplib2/__init__.py httplib2-0.9/python2/httplib2/__init__.py
--- httplib2-0.9.orig/python2/httplib2/__init__.py 2014-04-14 06:52:57.000000000 -0600
+++ httplib2-0.9/python2/httplib2/__init__.py 2014-05-23 21:17:02.082118837 -0600
@@ -191,8 +191,10 @@
CA_CERTS = ca_certs_locater.get()
except ImportError:
# Default CA certificates file bundled with httplib2.
- CA_CERTS = os.path.join(
2012-02-24 14:27:30 +00:00
- os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
2014-05-25 20:25:44 +00:00
+# CA_CERTS = os.path.join(
2012-02-24 14:27:30 +00:00
+# os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")
+# We use fedora ca bundle file instead, to preserve backward compability.
2014-05-25 20:25:44 +00:00
+ CA_CERTS = "/etc/ssl/certs/ca-bundle.crt"
2012-02-24 14:27:30 +00:00
# Which headers are hop-by-hop headers by default
HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate', 'proxy-authorization', 'te', 'trailers', 'transfer-encoding', 'upgrade']