mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1926 from akerl/requiredcheck
fixed check for required_together
This commit is contained in:
commit
5b1a0f79b2
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ class AnsibleModule(object):
|
|||
if spec is None:
|
||||
return
|
||||
for check in spec:
|
||||
counts = [ self.count_terms([field]) for field in check ]
|
||||
counts = [ self._count_terms([field]) for field in check ]
|
||||
non_zero = [ c for c in counts if c > 0 ]
|
||||
if len(non_zero) > 0:
|
||||
if 0 in counts:
|
||||
|
|
Loading…
Reference in a new issue