utf decode cont...

spacecruft
Jeff Moe 2022-10-01 14:58:54 -06:00
parent 1dd8bdf982
commit 6273be3743
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ class TCPServer(object):
self.close_client(fd)
return
self.client_buf[fd] += buf
self.client_buf[fd] += buf.decode()
while True:
cmd, sep, tail = self.client_buf[fd].partition('\n')