forked from Firepup650/python-talk
Messages are global, not local
This commit is contained in:
parent
1ab9289df6
commit
fc0da34e16
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ async def handleClient(reader, writer):
|
||||||
Linked servers: {len(G.servers)}
|
Linked servers: {len(G.servers)}
|
||||||
Connected clients: {G.uniqueClients}
|
Connected clients: {G.uniqueClients}
|
||||||
Total Clients: {len(G.clientsConnected)}
|
Total Clients: {len(G.clientsConnected)}
|
||||||
Messages sent: {len(msgs)}
|
Messages sent: {len(G.msgs)}
|
||||||
|
|
||||||
Please note that this is not network level statistics.\n""".encode(
|
Please note that this is not network level statistics.\n""".encode(
|
||||||
"utf8"
|
"utf8"
|
||||||
|
|
Loading…
Reference in a new issue