mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Fix prompt issue in asa terminal plugin (#32900)
This commit is contained in:
@@ -58,7 +58,7 @@ class TerminalModule(TerminalBase):
|
|||||||
if passwd:
|
if passwd:
|
||||||
# Note: python-3.5 cannot combine u"" and r"" together. Thus make
|
# Note: python-3.5 cannot combine u"" and r"" together. Thus make
|
||||||
# an r string and use to_text to ensure it's text on both py2 and py3.
|
# an r string and use to_text to ensure it's text on both py2 and py3.
|
||||||
cmd[u'prompts'] = 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
|
cmd[u'answer'] = passwd
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user