fixed frozen set, missing iterable

pull/11140/head
Brian Coca 10 years ago
parent 48c0d6388f
commit 5622fc23bc

@ -26,7 +26,7 @@ from ansible.plugins import module_loader
from ansible.parsing.splitter import parse_kv from ansible.parsing.splitter import parse_kv
# For filtering out modules correctly below # For filtering out modules correctly below
RAW_PARAM_MODULES = frozenset( RAW_PARAM_MODULES = ([
'command', 'command',
'shell', 'shell',
'script', 'script',
@ -37,7 +37,7 @@ RAW_PARAM_MODULES = frozenset(
'set_fact', 'set_fact',
'raw', 'raw',
'meta', 'meta',
) ])
class ModuleArgsParser: class ModuleArgsParser:

Loading…
Cancel
Save