projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bb332f
)
fix verify bug
author
Kenneth Reitz
<me@kennethreitz.com>
Mon, 17 Dec 2012 18:38:38 +0000
(13:38 -0500)
committer
Kenneth Reitz
<me@kennethreitz.com>
Mon, 17 Dec 2012 18:38:38 +0000
(13:38 -0500)
Fixes #1019
requests/adapters.py
patch
|
blob
|
history
diff --git
a/requests/adapters.py
b/requests/adapters.py
index 8768e73a4ae0dca037caea695370a80160286291..46f9d7bb4518d315f1f0f8b776b4c3d4743f0ed5 100644
(file)
--- 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'):