Fix junos terminal error regex (#50538)

*  Change junos terminal error regex to read error string
   correctly.
pull/50547/head
Ganesh Nalawade 6 years ago committed by GitHub
parent 97621852db
commit 555732f8bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -38,7 +38,7 @@ class TerminalModule(TerminalBase):
terminal_stderr_re = [
re.compile(br"unknown command"),
re.compile(br"syntax error"),
re.compile(br"error: commit failed")
re.compile(br"[\r\n]error:")
]
def on_open_shell(self):

Loading…
Cancel
Save