summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-02 22:50:10 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-02 22:50:10 +0600
commita3c7019e065298103026960e00fff6b80b6bcf62 (patch)
tree9ee5377ac1936e0a6a185c63da9c241d82236982
parent416b9c29f7a03ac004631ffdf38bb6ed39da4650 (diff)
downloadyoutube-dl-a3c7019e065298103026960e00fff6b80b6bcf62.tar.gz
youtube-dl-a3c7019e065298103026960e00fff6b80b6bcf62.tar.xz
youtube-dl-a3c7019e065298103026960e00fff6b80b6bcf62.zip
[YoutubeDL] Check for `get_ca_certs` availability
`get_ca_certs` is not available in python <3.4
-rwxr-xr-xyoutube_dl/YoutubeDL.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 4fa2223ad..ce4b72fd3 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1770,7 +1770,9 @@ class YoutubeDL(object):
         https_handler = make_HTTPS_handler(self.params, debuglevel=debuglevel)
         # The ssl context is only available in python 2.7.9 and 3.x
         if hasattr(https_handler, '_context'):
-            if len(https_handler._context.get_ca_certs()) == 0:
+            ctx = https_handler._context
+            # get_ca_certs is unavailable prior to python 3.4
+            if hasattr(ctx, 'get_ca_certs') and len(ctx.get_ca_certs()) == 0:
                 self.report_warning(
                     'No ssl certificates were loaded, urls that use https '
                     'won\'t work')