From 70e403768f71f1360498ede3f9240047223b7636 Mon Sep 17 00:00:00 2001 From: "adam.stokes" Date: Tue, 10 Jun 2014 22:06:02 -0400 Subject: [PATCH] _core.py: fix syntax error Fix syntax error with an additional paren --- websocket/_core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/websocket/_core.py b/websocket/_core.py index 6b37d96..e98054a 100644 --- a/websocket/_core.py +++ b/websocket/_core.py @@ -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)