Command authorization failed ios regex (#40819)

* Add 'Command authorization failed' to stderr regex list

* Add missing comma

* Remove superfluous comma
pull/40828/head
Ricardo Carrillo Cruz 6 years ago committed by GitHub
parent cb636eb522
commit 026de6bcb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,7 +46,8 @@ class TerminalModule(TerminalBase):
re.compile(br"Bad mask", re.I),
re.compile(br"% ?(\S+) ?overlaps with ?(\S+)", re.I),
re.compile(br"[%\S] ?Error: ?[\s]+", re.I),
re.compile(br"[%\S] ?Informational: ?[\s]+", re.I)
re.compile(br"[%\S] ?Informational: ?[\s]+", re.I),
re.compile(br"Command authorization failed")
]
def on_open_shell(self):

Loading…
Cancel
Save