Fixed an issue when the monitor filters were not applied in their order // Resolve #4320

This commit is contained in:
Ivan Kravets
2022-06-15 14:30:05 +03:00
parent 743a3e2c02
commit 6f9985125d

View File

@ -99,7 +99,7 @@ def new_terminal(options):
new_serial_instance(options),
echo=options["echo"],
eol=options["eol"].lower(),
filters=options["filters"] or ["default"],
filters=list(reversed(options["filters"] or ["default"])),
)
term.exit_character = chr(options["exit_char"])
term.menu_character = chr(options["menu_char"])