From d95230bb7774d228138adc08a089f40150b27752 Mon Sep 17 00:00:00 2001 From: David Peall Date: Tue, 9 Nov 2021 14:00:53 +0200 Subject: [PATCH] Update README.md SSL version check syntax Update the syntax for the SSL version check to be compatible with python 3. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4822473e3..c21623c26 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ brew install python Once installed, you can query the version of OpenSSL like so: ``` -python -c "import ssl; print ssl.OPENSSL_VERSION" +python -c "import ssl; print (ssl.OPENSSL_VERSION)" ``` You'll need a version with OpenSSL version 1.0.0 or later.