apply @zazard's fix to parent attribute lookup

pull/16428/head
nitzmahone 8 years ago
parent c117b9d79b
commit ac04ffb9b1

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

Loading…
Cancel
Save