From b58a7d56a291b781504ec7dfb943e62456f206a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wr=C3=B3bel?= Date: Fri, 15 May 2020 18:58:15 +0200 Subject: [PATCH] Fixed typo --- syncplay/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index 7687874..dcc715a 100755 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -759,7 +759,7 @@ class SyncplayClient(object): self._endpoint = HostnameEndpoint(reactor, host, port) try: caCertFP = open(os.environ['SSL_CERT_FILE']) - caCertTwisted = Certificate.loadPEM(caCertFP.read().encode('utf-8') + caCertTwisted = Certificate.loadPEM(caCertFP.read().encode('utf-8')) caCertFP.close() self.protocolFactory.options = optionsForClientTLS(hostname=host) self._clientSupportsTLS = True