Browse Source

Fix log message when client disconnects

master
Forest Belton 2 years ago
parent
commit
93f36cef12
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      paircd/server.py

+ 1
- 1
paircd/server.py View File

@ -41,7 +41,7 @@ class Server:
if client.closed:
return
client.log("is quitting: {quit_msg}")
client.log(f"is quitting: {quit_msg}")
msg = QUIT(quit_msg, prefix=client.id())
for client in self.clients_by_nick.values():
if client.nickname == nick:

Loading…
Cancel
Save