mirror of
https://github.com/lowobservable/oec.git
synced 2026-03-05 11:03:45 +00:00
Fix pyte screen write_process_input - missed variable name change in previous refactoring
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user