From 155bdeb12352065bc36256ba8014003480361a0c Mon Sep 17 00:00:00 2001 From: Kyle Morton Date: Tue, 21 Jul 2015 18:01:51 -0700 Subject: [PATCH] Fixing default CA which ought to be read as a pemfile and not a directory --- netlib/tcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlib/tcp.py b/netlib/tcp.py index 38b77c9ef..47ce8c0e8 100644 --- a/netlib/tcp.py +++ b/netlib/tcp.py @@ -422,7 +422,7 @@ class _Connection(object): context.set_verify(verify_options, verify_cert) if ca_path is None and ca_pemfile is None: - ca_path = certifi.where() + ca_pemfile = certifi.where() context.load_verify_locations(ca_pemfile, ca_path) # Workaround for