From 4a9daf6bae15d475de77e01fba69a964d27fd824 Mon Sep 17 00:00:00 2001 From: Ricky Cook Date: Mon, 7 Mar 2016 14:20:33 +1100 Subject: [PATCH] New json_fail syntax for dnsimple module --- lib/ansible/modules/extras/network/dnsimple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/network/dnsimple.py b/lib/ansible/modules/extras/network/dnsimple.py index 9aa52172f1..0825f4ba30 100644 --- a/lib/ansible/modules/extras/network/dnsimple.py +++ b/lib/ansible/modules/extras/network/dnsimple.py @@ -159,7 +159,7 @@ def main(): ) if not HAS_DNSIMPLE: - module.fail_json("dnsimple required for this module") + module.fail_json(msg="dnsimple required for this module") account_email = module.params.get('account_email') account_api_token = module.params.get('account_api_token')