aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/caldav
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@calcurse.org>2016-01-25 19:59:38 +0100
committerLukas Fleischer <lfleischer@calcurse.org>2016-01-25 19:59:38 +0100
commit5e6a61eee908cea520b3907074c5e0a9bb61c8da (patch)
treecd4eff9a4e23b123d9b9984ea4b1affb99c14b82 /contrib/caldav
parent849459c63f6f55e8bb72e6938d47ec0cdf6f8171 (diff)
downloadcalcurse-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-xcontrib/caldav/calcurse-caldav.py2
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().