Skip to content

Commit

Permalink
fix for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiering committed Mar 5, 2025
1 parent 63b9891 commit 78dccbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicale/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def finish_request_locked( # type:ignore[override]
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)
Expand Down

0 comments on commit 78dccbd

Please sign in to comment.