Update README.md SSL version check syntax

Update the syntax for the SSL version check to be compatible with python 3.
This commit is contained in:
David Peall 2021-11-09 14:00:53 +02:00 committed by GitHub
parent 94521182bf
commit d95230bb77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.