Commit 5622fc23 by Brian Coca

fixed frozen set, missing iterable

parent 48c0d638
......@@ -26,7 +26,7 @@ from ansible.plugins import module_loader
from ansible.parsing.splitter import parse_kv
# For filtering out modules correctly below
RAW_PARAM_MODULES = frozenset(
RAW_PARAM_MODULES = ([
'command',
'shell',
'script',
......@@ -37,7 +37,7 @@ RAW_PARAM_MODULES = frozenset(
'set_fact',
'raw',
'meta',
)
])
class ModuleArgsParser:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment