mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed bad paren in connection plugin
This commit is contained in:
parent
ab45e5ee59
commit
a5f533e25d
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ class Connection(object):
|
|||
|
||||
if success_key in become_output or \
|
||||
(prompt and become_output.endswith(prompt)) or \
|
||||
utils.su_prompts.check_su_prompt(become_output)):
|
||||
utils.su_prompts.check_su_prompt(become_output):
|
||||
break
|
||||
chunk = chan.recv(bufsize)
|
||||
|
||||
|
|
Loading…
Reference in a new issue