From 19be8cd0c0bd0d0d0ae975c4742927a6d7f22e80 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 7 Jan 2015 22:37:10 +0530 Subject: [PATCH] ... --- src/calibre/utils/https.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/utils/https.py b/src/calibre/utils/https.py index e0f0719d61..fb65cf7d33 100644 --- a/src/calibre/utils/https.py +++ b/src/calibre/utils/https.py @@ -11,6 +11,8 @@ from contextlib import closing from calibre import get_proxies from calibre.constants import ispy3 +# On OS X PROTOCOL_TLSv1_2 is not available because the SSL library shipped +# with OS X is too old has_ssl_verify = sys.version_info[:3] > (2, 7, 8) class HTTPError(ValueError):