Skip to content

Commit aa2e196

Browse files
Pass write_binary=False to Vt100_Output. _SocketStdout expects strings.
1 parent 4c56c84 commit aa2e196

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pymux/server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ def _create_cli(self, true_color=False, term='xterm'):
130130
output = Vt100_Output(_SocketStdout(self._send_packet),
131131
lambda: self.size,
132132
true_color=true_color,
133-
term=term)
133+
term=term,
134+
write_binary=False)
134135
input = _ClientInput(self._send_packet)
135136
self.cli = self.pymux.create_cli(self, output, input)
136137

0 commit comments

Comments
 (0)