mirror of https://github.com/yt-dlp/yt-dlp.git
Automatically load SSL certs on Windows
This commit is contained in:
parent
4c52160646
commit
303b479e0a
|
@ -561,11 +561,14 @@ def make_HTTPS_handler(opts_no_check_certificate):
|
||||||
return HTTPSHandlerV3()
|
return HTTPSHandlerV3()
|
||||||
else:
|
else:
|
||||||
context = ssl.SSLContext(ssl.PROTOCOL_SSLv3)
|
context = ssl.SSLContext(ssl.PROTOCOL_SSLv3)
|
||||||
context.set_default_verify_paths()
|
|
||||||
|
|
||||||
context.verify_mode = (ssl.CERT_NONE
|
context.verify_mode = (ssl.CERT_NONE
|
||||||
if opts_no_check_certificate
|
if opts_no_check_certificate
|
||||||
else ssl.CERT_REQUIRED)
|
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)
|
return compat_urllib_request.HTTPSHandler(context=context)
|
||||||
|
|
||||||
class ExtractorError(Exception):
|
class ExtractorError(Exception):
|
||||||
|
|
Loading…
Reference in New Issue