fix invocation

pull/79720/head
Brian Coca 8 months ago
parent 5cdd7168e5
commit fe2ab20c37

@ -87,6 +87,8 @@ class ActionBase(ABC):
# Backwards compat: self._display isn't really needed, just import the global display and use that. # Backwards compat: self._display isn't really needed, just import the global display and use that.
self._display = display self._display = display
self._found = {}
@abstractmethod @abstractmethod
def run(self, tmp=None, task_vars=None): def run(self, tmp=None, task_vars=None):
""" Action Plugins should implement this method to perform their """ Action Plugins should implement this method to perform their
@ -218,7 +220,7 @@ class ActionBase(ABC):
return True return True
return False return False
def _get_module(self, module_name): def _get_module(self, module_name, module_args):
if module_name not in self._found: if module_name not in self._found:

Loading…
Cancel
Save