routeros_command: support spaces in device identity (#58328)

This commit is contained in:
Egor Zaitsev 2019-06-26 17:20:24 +03:00 committed by Ganesh Nalawade
parent 88c0907fed
commit b5ac9f5cf1

View file

@ -47,7 +47,7 @@ class TerminalModule(TerminalBase):
terminal_stdout_re = [
re.compile(br"\x1b<"),
re.compile(br"\[\w+\@[\w\-\.]+\] ?> ?$"),
re.compile(br"\[\w+\@[\w\s\-\.]+\] ?> ?$"),
re.compile(br"Please press \"Enter\" to continue!"),
re.compile(br"Do you want to see the software license\? \[Y\/n\]: ?"),
]