Fix junos terminal regex (#47096)

Fix junos stdout regex

Change at hing
pull/4420/head
Fran Fitzpatrick 2018-10-17 08:59:35 -05:00 committed by Sumit Jaiswal
parent dd46f953f6
commit fc341e01fa
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ except ImportError:
class TerminalModule(TerminalBase):
terminal_stdout_re = [
re.compile(br"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$|%"),
re.compile(br"[\r\n]?[\w@+\-\.:\/\[\]]+[>#%] ?$"),
]
terminal_stderr_re = [