mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Remove check for ssl certs
When it uses a capath instead of a cafile, 'get_ca_certs' or 'cert_store_stats' only returns certificates already used in a connection. (see #5364)
This commit is contained in:
		| @@ -1768,14 +1768,6 @@ class YoutubeDL(object): | ||||
|  | ||||
|         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'): | ||||
|             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') | ||||
|         ydlh = YoutubeDLHandler(self.params, debuglevel=debuglevel) | ||||
|         opener = compat_urllib_request.build_opener( | ||||
|             proxy_handler, https_handler, cookie_processor, ydlh) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user