From 755e004d97bdee340011d3576cc2f271e8b55ce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Mon, 6 Jul 2015 12:10:09 -0500 Subject: [PATCH] SSL verification disabled in Twitter authorisation --- src/twython/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twython/api.py b/src/twython/api.py index db31268d..c0b96537 100644 --- a/src/twython/api.py +++ b/src/twython/api.py @@ -127,7 +127,7 @@ class Twython(EndpointsMixin, object): # Never be used again. client_args_copy = self.client_args.copy() for k, v in client_args_copy.items(): - if k in ('cert', 'hooks', 'max_redirects', 'proxies'): + if k in ('verify', 'cert', 'hooks', 'max_redirects', 'proxies'): setattr(self.client, k, v) self.client_args.pop(k) # Pop, pop!