Skip to content

Commit

Permalink
Merge pull request #109 from mattrose/fix-debugserver
Browse files Browse the repository at this point in the history
fix io errors on debugserver
  • Loading branch information
mattrose authored Jun 11, 2020
2 parents 3e73e89 + 4246292 commit 8c1f96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/debugserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def setup(self):
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
Expand Down

0 comments on commit 8c1f96d

Please sign in to comment.