mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 14:41:23 -07:00
Fix "_is_package_installed() takes exactly 4 arguments, 3 provided" error
This commit is contained in:
parent
b3be960d24
commit
70235a930b
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ def main():
|
||||||
|
|
||||||
cmd = None
|
cmd = None
|
||||||
changed = False
|
changed = False
|
||||||
installed = _is_package_installed(module, name, easy_install)
|
installed = _is_package_installed(module, name, easy_install, executable_arguments)
|
||||||
|
|
||||||
if not installed:
|
if not installed:
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue