_core.py: fix syntax error

Fix syntax error with an additional paren
This commit is contained in:
adam.stokes
2014-06-10 22:06:02 -04:00
parent 7b8d481d73
commit 70e403768f

View File

@@ -422,7 +422,6 @@ class WebSocket(object):
sslopt = dict(cert_reqs=ssl.CERT_REQUIRED)
certPath = os.path.join(
os.path.dirname(__file__), "cacert.pem")
)
if os.path.isfile(certPath):
sslopt['ca_certs'] = certPath
sslopt.update(self.sslopt)