Skip to content

Commit cfb5f0e

Browse files
jeffwidmandpkp
authored andcommitted
Make SSL warning list the correct Python versions (#924)
1 parent 9fce170 commit cfb5f0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kafka/conn.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
ssl.SSLWantWriteError
3737
ssl.SSLZeroReturnError
3838
except:
39-
log.warning('old ssl module detected.'
40-
' ssl error handling may not operate cleanly.'
41-
' Consider upgrading to python 3.5 or 2.7')
39+
log.warning('Old SSL module detected.'
40+
' SSL error handling may not operate cleanly.'
41+
' Consider upgrading to Python 3.3 or 2.7.9')
4242
ssl.SSLWantReadError = ssl.SSLError
4343
ssl.SSLWantWriteError = ssl.SSLError
4444
ssl.SSLZeroReturnError = ssl.SSLError

0 commit comments

Comments
 (0)