Merge pull request #2493 from mriddlegsn/devel

Fixed error message: TypeError: fail_json() takes exactly 1 argument …
reviewable/pr18780/r1
Brian Coca 10 years ago
commit c978e260f9

@ -188,7 +188,7 @@ def role_action(module, iam, name, policy_name, skip, pdoc, state):
# Role doesn't exist so it's safe to assume the policy doesn't either # Role doesn't exist so it's safe to assume the policy doesn't either
module.exit_json(changed=False) module.exit_json(changed=False)
else: else:
module.fail_json(e.message) module.fail_json(msg=e.message)
try: try:
for pol in current_policies: for pol in current_policies:

Loading…
Cancel
Save