mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Print a warning if no ssl certificates are loaded
This commit is contained in:
parent
7cf02b6619
commit
1a944d8a2a
1 changed files with 6 additions and 0 deletions
|
@ -1768,6 +1768,12 @@ def _setup_opener(self):
|
|||
|
||||
debuglevel = 1 if self.params.get('debug_printtraffic') else 0
|
||||
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:
|
||||
self.report_warning(
|
||||
'No ssl certificates were loaded, urls that use https '
|
||||
'won\'t work')
|
||||
ydlh = YoutubeDLHandler(self.params, debuglevel=debuglevel)
|
||||
opener = compat_urllib_request.build_opener(
|
||||
proxy_handler, https_handler, cookie_processor, ydlh)
|
||||
|
|
Loading…
Reference in a new issue