fix io errors on debugserver

This commit is contained in:
Matt Rose 2020-06-01 20:11:03 -04:00
parent 9d5c2a6bb3
commit 4246292974
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class PythonConsoleServer(socketserver.BaseRequestHandler):
def handle(self):
ddbg("debugserver: handling")
try:
self.socketio = self.request.makefile()
self.socketio = self.request.makefile(mode='rw')
sys.stdout = self.socketio
sys.stdin = self.socketio
sys.stderr = self.socketio