Skip to content

Commit

Permalink
remove unused parameter in logged message (Fixes #377)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Oct 13, 2024
1 parent e0e577d commit f9a818d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/engineio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,7 @@ def _read_loop_websocket(self):
except Exception as e: # pragma: no cover
if type(e) is OSError and e.errno == 9:
self.logger.info(
'WebSocket connection is closing, aborting',
str(e))
'WebSocket connection is closing, aborting')
else:
self.logger.info(
'Unexpected error receiving packet: "%s", aborting',
Expand Down

0 comments on commit f9a818d

Please sign in to comment.