diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-12-12 23:43:25 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-12-12 23:43:25 +0100 |
commit | 293f0f39ce955b9aa8284d461a0444e27491c392 (patch) | |
tree | c70d1aeda7541690e8e75eae9af9cdaa69668c04 /youtube_dl | |
parent | 0db261ba567cb5370455d67c4398e11e5e2119f8 (diff) |
[utils] make_HTTPS_handler: Remove try/except block that would always raise an exception
This code is only run for Python < 3.4, where context.load_default_certs doesn't exist
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/utils.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 83a45e702..ec34dcef9 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -421,10 +421,6 @@ def make_HTTPS_handler(opts_no_check_certificate, **kwargs): if opts_no_check_certificate else ssl.CERT_REQUIRED) context.set_default_verify_paths() - try: - context.load_default_certs() - except AttributeError: - pass # Python < 3.4 return compat_urllib_request.HTTPSHandler(context=context, **kwargs) |