Update repl_server.py

This commit is contained in:
Shunsuke Shibayama 2022-09-16 15:24:29 +09:00
parent 5b5ffb1fb6
commit 3f9a290342

View file

@ -32,7 +32,7 @@ while True:
except e:
__res = str(e)
__already_loaded = True
__out = __sys.stdout.getvalue().strip()
__out = __sys.stdout.getvalue()[:-1]
__res = __out + '\n' + __res
__client_socket.send(__res.encode())
else: