diff options
author | Lukas Fleischer <lfleischer@calcurse.org> | 2016-01-25 19:59:38 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@calcurse.org> | 2016-01-25 19:59:38 +0100 |
commit | 5e6a61eee908cea520b3907074c5e0a9bb61c8da (patch) | |
tree | cd4eff9a4e23b123d9b9984ea4b1affb99c14b82 /contrib/caldav | |
parent | 849459c63f6f55e8bb72e6938d47ec0cdf6f8171 (diff) | |
download | calcurse-5e6a61eee908cea520b3907074c5e0a9bb61c8da.tar.gz calcurse-5e6a61eee908cea520b3907074c5e0a9bb61c8da.zip |
calcurse-caldav: Fix comment on certificate checks
Clarify that ssl._create_unverified_context() was added in Python 3.4.3.
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'contrib/caldav')
-rwxr-xr-x | contrib/caldav/calcurse-caldav.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/caldav/calcurse-caldav.py b/contrib/caldav/calcurse-caldav.py index 841a63a..16a5ca1 100755 --- a/contrib/caldav/calcurse-caldav.py +++ b/contrib/caldav/calcurse-caldav.py @@ -417,7 +417,7 @@ try: context = ssl._create_unverified_context() conn = http.client.HTTPSConnection(hostname, context=context) except AttributeError: - # Python versions prior to 3.4 do not support + # Python versions prior to 3.4.3 do not support # ssl._create_unverified_context(). However, these versions do not # seem to verify certificates by default so we can simply fall back # to http.client.HTTPSConnection(). |