module_utils_fix_dellos6 (#28060)

This commit is contained in:
abirami-n 2017-09-12 22:54:36 +05:30 committed by John R Barker
parent c0000bc722
commit adc533804a
2 changed files with 8 additions and 4 deletions

View file

@ -48,7 +48,7 @@ class TerminalModule(TerminalBase):
cmd = {u'command': u'enable'}
if passwd:
cmd[u'prompt'] = to_text(r"[\r\n]?password: $", errors='surrogate_or_strict')
cmd[u'prompt'] = to_text(r"[\r\n]?password:$", errors='surrogate_or_strict')
cmd[u'answer'] = passwd
try:
self._exec_cli_command(to_bytes(json.dumps(cmd), errors='surrogate_or_strict'))