fix for lint

This commit is contained in:
Peter Bieringer 2025-03-05 20:59:41 +01:00
parent 63b98913e0
commit 78dccbdc92

View file

@ -226,7 +226,7 @@ class ParallelHTTPSServer(ParallelHTTPServer):
except socket.timeout:
raise
except Exception as e:
raise RuntimeError("SSL handshake failed: %s client %s" % (e, client_address[0])) from e
raise RuntimeError("SSL handshake failed: %s client %s" % (e, str(client_address[0]))) from e
except Exception:
try:
self.handle_error(request, client_address)