pass list correctly to lookup

This commit is contained in:
Brian Coca 2015-08-12 17:41:39 -04:00
parent dd67b1e4d6
commit 2c34a5bdbd

View file

@ -255,7 +255,7 @@ class Templar:
loop_terms = listify_lookup_plugin_terms(terms=args, templar=self, loader=self._loader, fail_on_undefined=True, convert_bare=False)
# safely catch run failures per #5059
try:
ran = instance.run(*loop_terms, variables=self._available_variables, **kwargs)
ran = instance.run(loop_terms, variables=self._available_variables, **kwargs)
except (AnsibleUndefinedVariable, UndefinedError):
raise
except Exception, e: