fix cartesian lookup

it seems that this was not working in 1.9 but we swallowed up the error
fixes #14437
This commit is contained in:
Brian Coca 2016-02-11 10:34:31 -05:00
parent cf251258a8
commit a8aa5ff4eb

View file

@ -50,5 +50,5 @@ class LookupModule(LookupBase):
if len(my_list) == 0:
raise AnsibleError("with_cartesian requires at least one element in each list")
return [self._flatten(x) for x in product(*my_list, fillvalue=None)]
return [self._flatten(x) for x in product(*my_list)]