Fix pyte screen write_process_input - missed variable name change in previous refactoring

This commit is contained in:
Andrew Kay
2019-06-29 17:04:36 -05:00
parent 2b5c8ce9ea
commit baf22c7008

View File

@@ -84,7 +84,7 @@ class VT100Session(Session):
self.vt100_screen = pyte.Screen(columns, rows)
self.vt100_screen.write_process_input = lambda data: host.write(data.encode())
self.vt100_screen.write_process_input = lambda data: self.host_process.write(data.encode())
self.vt100_stream = pyte.ByteStream(self.vt100_screen)