From 41c2f889b2ce55f37faf617497d32083682ab835 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 30 Dec 2014 15:44:55 +0100 Subject: [PATCH] Fix related to the SSLv3 disabling --- 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 67a2daea9..47f09acb9 100644 --- a/lib/request/httpshandler.py +++ b/lib/request/httpshandler.py @@ -53,7 +53,7 @@ class HTTPSConnection(httplib.HTTPSConnection): break else: sock.close() - except ssl.SSLError, errMsg: + except (ssl.SSLError, socket.error), errMsg: logger.debug("SSL connection error occurred ('%s')" % errMsg) if not success: