mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix typo in 0b86aa6
This commit is contained in:
parent
0b86aa62e1
commit
abc82fee13
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ class TaskQueueManager:
|
|||
if method_name == 'v2_playbook_on_start':
|
||||
import inspect
|
||||
(f_args, f_varargs, f_keywords, f_defaults) = inspect.getargspec(method)
|
||||
if 'playbook' in args:
|
||||
if 'playbook' in f_args:
|
||||
method(*args, **kwargs)
|
||||
else:
|
||||
method()
|
||||
|
|
Loading…
Reference in a new issue