Fixed podnapisi provider on host with OpenSSL 3

This commit is contained in:
saddfox 2023-02-09 12:09:56 +01:00 committed by GitHub
parent d39f41d7e2
commit 7f05f932ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class PodnapisiSubtitle(_PodnapisiSubtitle):
class PodnapisiAdapter(HTTPAdapter):
def init_poolmanager(self, connections, maxsize, block=False):
ctx = ssl.create_default_context()
ctx.set_ciphers('DEFAULT@SECLEVEL=1')
ctx.set_ciphers('DEFAULT@SECLEVEL=0')
ctx.check_hostname = False
self.poolmanager = poolmanager.PoolManager(
num_pools=connections,