mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[YoutubeDL] Check for get_ca_certs
availability
`get_ca_certs` is not available in python <3.4
This commit is contained in:
parent
416b9c29f7
commit
a3c7019e06
1 changed files with 3 additions and 1 deletions
|
@ -1770,7 +1770,9 @@ def _setup_opener(self):
|
||||||
https_handler = make_HTTPS_handler(self.params, debuglevel=debuglevel)
|
https_handler = make_HTTPS_handler(self.params, debuglevel=debuglevel)
|
||||||
# The ssl context is only available in python 2.7.9 and 3.x
|
# The ssl context is only available in python 2.7.9 and 3.x
|
||||||
if hasattr(https_handler, '_context'):
|
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(
|
self.report_warning(
|
||||||
'No ssl certificates were loaded, urls that use https '
|
'No ssl certificates were loaded, urls that use https '
|
||||||
'won\'t work')
|
'won\'t work')
|
||||||
|
|
Loading…
Reference in a new issue