Remove comment reference to removed function

This comment references the wrap_socket()
function in the ssl module that is removed
in Python 3.12

Change-Id: I915d5396b0ac62b73246e2e5271109e979f0aab8
This commit is contained in:
Tobias Urdin 2024-08-30 10:35:44 +02:00
parent d601f7aae0
commit e1440d5606

@ -1018,7 +1018,7 @@ class Connection(object):
if self.ssl:
ssl_params = dict()
# http://docs.python.org/library/ssl.html - ssl.wrap_socket
# http://docs.python.org/library/ssl.html
if self.ssl_version:
ssl_params['ssl_version'] = self.validate_ssl_version(
self.ssl_version)