mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix junos terminal regex (#47096)
Fix junos stdout regex Change at hing
This commit is contained in:
parent
dd46f953f6
commit
fc341e01fa
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ except ImportError:
|
||||||
class TerminalModule(TerminalBase):
|
class TerminalModule(TerminalBase):
|
||||||
|
|
||||||
terminal_stdout_re = [
|
terminal_stdout_re = [
|
||||||
re.compile(br"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$|%"),
|
re.compile(br"[\r\n]?[\w@+\-\.:\/\[\]]+[>#%] ?$"),
|
||||||
]
|
]
|
||||||
|
|
||||||
terminal_stderr_re = [
|
terminal_stderr_re = [
|
||||||
|
|
Loading…
Reference in a new issue