From 2d7dbc5d0c52fc0dfe52c11ac538354b0c406fef Mon Sep 17 00:00:00 2001 From: Davide Guerri Date: Thu, 4 Jun 2015 17:34:21 +0100 Subject: [PATCH] Fix invalid syntax in openstack_module_kwargs call --- lib/ansible/modules/cloud/openstack/os_security_group_rule.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/cloud/openstack/os_security_group_rule.py b/lib/ansible/modules/cloud/openstack/os_security_group_rule.py index 8422a920791..903d694bab3 100644 --- a/lib/ansible/modules/cloud/openstack/os_security_group_rule.py +++ b/lib/ansible/modules/cloud/openstack/os_security_group_rule.py @@ -111,6 +111,7 @@ def main(): module_kwargs = openstack_module_kwargs( mutually_exclusive=[ ['remote_ip_prefix', 'remote_group'], + ] ) module = AnsibleModule(argument_spec, **module_kwargs)