From ad42b9b4af1d03c006c607f7425cd513751e2802 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 18 Jan 2024 18:55:29 -0500 Subject: [PATCH] Update lib/ansible/plugins/__init__.py Co-authored-by: Abhijeet Kasurde --- lib/ansible/plugins/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/plugins/__init__.py b/lib/ansible/plugins/__init__.py index dd6a8911d9a..0683e3c223c 100644 --- a/lib/ansible/plugins/__init__.py +++ b/lib/ansible/plugins/__init__.py @@ -91,8 +91,8 @@ class AnsiblePlugin(ABC): return options def get_ff_option(self, *options, hostvars=None, pc=None): - ''' convinience function for when plugins have not followed strict conventions (user/remote_user) - and/or relied on playcontext, which is not strictly up2date, specially in loops. ''' + ''' convenience function for when plugins have not followed strict conventions (user/remote_user) + and/or relied on play context, which is not strictly up to date, especially in loops. ''' for option in options: if self.has_option(option): return self.get_option(option, hostvars)