fix cartesian lookup

it seems that this was not working in 1.9 but we swallowed up the error
fixes #14437
pull/14439/head
Brian Coca 9 years ago
parent cf251258a8
commit a8aa5ff4eb

@ -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)]

Loading…
Cancel
Save