Commit b93b9987 by James Cammarata

Fix small typo resulting in a traceback for the apt_key module

parent b0d22b76
......@@ -112,7 +112,7 @@ REQUIRED_EXECUTABLES=['gpg', 'grep', 'apt-key']
def check_missing_binaries(module):
missing = [e for e in REQUIRED_EXECUTABLES if not find_executable(e)]
if len(missing):
module.fail_json(msg="binaries are missing", names=all)
module.fail_json(msg="binaries are missing", names=missing)
def all_keys(module, keyring):
if keyring:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment