From 92870ee996174f8d70824170aa6a3e078399f65a Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 26 Jul 2016 09:50:21 -0400 Subject: [PATCH] jsonarg bikeshed to json, arg type implies 'arg' --- lib/ansible/module_utils/basic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/module_utils/basic.py b/lib/ansible/module_utils/basic.py index 6c19e1305d..baf662e96f 100644 --- a/lib/ansible/module_utils/basic.py +++ b/lib/ansible/module_utils/basic.py @@ -667,6 +667,7 @@ class AnsibleModule(object): 'path': self._check_type_path, 'raw': self._check_type_raw, 'jsonarg': self._check_type_jsonarg, + 'json': self._check_type_jsonarg, } if not bypass_checks: self._check_required_arguments()