Fixed typo in task_executor (#57461)
Changed 'requied' to 'required' Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/4420/head
parent
7aa0d26fda
commit
e0f6c17857
|
@ -891,7 +891,7 @@ class TaskExecutor:
|
||||||
|
|
||||||
if getattr(become_plugin, 'require_tty', False) and not getattr(connection, 'has_tty', False):
|
if getattr(become_plugin, 'require_tty', False) and not getattr(connection, 'has_tty', False):
|
||||||
raise AnsibleError(
|
raise AnsibleError(
|
||||||
"The '%s' connection does not provide a tty which is requied for the selected "
|
"The '%s' connection does not provide a tty which is required for the selected "
|
||||||
"become plugin: %s." % (conn_type, become_plugin.name)
|
"become plugin: %s." % (conn_type, become_plugin.name)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue