From 4da20679ee6968d3b4036bc48f39bc793b76d8f1 Mon Sep 17 00:00:00 2001 From: Rexikon Date: Wed, 19 Nov 2014 16:36:30 +0100 Subject: [PATCH] Update httpshandler.py ssl.PROTOCOL_SSLv3 removed affecting error: AttributeError: 'module' object has no attribute 'PROTOCOL_SSLv3' --- lib/request/httpshandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request/httpshandler.py b/lib/request/httpshandler.py index c5c39e8a6..b20dc451a 100644 --- a/lib/request/httpshandler.py +++ b/lib/request/httpshandler.py @@ -19,7 +19,7 @@ try: except ImportError: pass -_protocols = [ssl.PROTOCOL_SSLv3, ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv23] +_protocols = [ssl.PROTOCOL_TLSv1, ssl.PROTOCOL_SSLv23] class HTTPSConnection(httplib.HTTPSConnection): """