mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-17 22:54:23 -05:00
more generic conversion of str/bytes to unicode
This commit is contained in:
parent
64899341dc
commit
2e9c73e8ca
@ -123,6 +123,6 @@ class ClientTLSOptionsFactory(object):
|
|||||||
|
|
||||||
def get_options(self, host):
|
def get_options(self, host):
|
||||||
return ClientTLSOptions(
|
return ClientTLSOptions(
|
||||||
unicode(host),
|
host.decode('utf-8'),
|
||||||
CertificateOptions(verify=False).getContext()
|
CertificateOptions(verify=False).getContext()
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user