mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
apply @zazard's fix to parent attribute lookup
This commit is contained in:
@@ -129,7 +129,7 @@ class Base:
|
||||
value = None
|
||||
value_found = False
|
||||
|
||||
if (value is None or not value_found) and hasattr(self, '_get_parent_attribute'):
|
||||
if not value_found and hasattr(self, '_get_parent_attribute'):
|
||||
value = self._get_parent_attribute(prop_name)
|
||||
value_found = True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user