From 910b2312d644aa3edf5d03f5dc760474a949b71d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 17 Dec 2012 13:38:38 -0500 Subject: [PATCH] fix verify bug Fixes #1019 --- requests/adapters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/adapters.py b/requests/adapters.py index 8768e73..46f9d7b 100644 --- a/requests/adapters.py +++ b/requests/adapters.py @@ -62,7 +62,7 @@ class HTTPAdapter(BaseAdapter): # Allow self-specified cert location. if verify is not True: - cert_loc = self.verify + cert_loc = verify # Look for configuration. if not cert_loc and self.config.get('trust_env'): -- 2.34.1