This is an automated email from the ASF dual-hosted git repository. dkulp pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/avro.git
commit 4468b34b5da5fba1a7ed5bf79a829e1efcffbd63 Author: rbixler-eb <[email protected]> AuthorDate: Thu Feb 28 09:09:40 2019 -0600 remove extraneous parens --- lang/py3/avro/ipc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/py3/avro/ipc.py b/lang/py3/avro/ipc.py index 07fa2ee..62190ef 100644 --- a/lang/py3/avro/ipc.py +++ b/lang/py3/avro/ipc.py @@ -611,7 +611,7 @@ class HTTPTransceiver(Transceiver): req_resource: Optional HTTP resource path to use, '/' by default. """ self._req_resource = req_resource - if (ssl): + if ssl: self._conn = http.client.HTTPSConnection(host, port) else: self._conn = http.client.HTTPConnection(host, port)
