use linux as VT

This commit is contained in:
chrys 2018-05-28 18:04:47 +02:00
parent 5bc735bc8d
commit 02624a692a

View File

@ -91,7 +91,8 @@ class driver(screenDriver):
if p_pid == 0: # Child. if p_pid == 0: # Child.
argv = shlex.split(command) argv = shlex.split(command)
env = os.environ.copy() env = os.environ.copy()
env["TERM"] = 'vt100' #values are VT100,xterm-256color,linux
env["TERM"] = 'linux'
os.execvpe(argv[0], argv, env) os.execvpe(argv[0], argv, env)
# File-like object for I/O with the child process aka command. # File-like object for I/O with the child process aka command.
p_out = os.fdopen(master_fd, "w+b", 0) p_out = os.fdopen(master_fd, "w+b", 0)