Skip to content

Commit

Permalink
Fixed typo in task_executor (ansible#57461)
Browse files Browse the repository at this point in the history
Changed 'requied' to 'required'

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
  • Loading branch information
Akasurde authored and mkrizek committed Jun 6, 2019
1 parent 7aa0d26 commit e0f6c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/executor/task_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ def _get_connection(self, variables, templar):

if getattr(become_plugin, 'require_tty', False) and not getattr(connection, 'has_tty', False):
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)
)

Expand Down

0 comments on commit e0f6c17

Please sign in to comment.