mirror of
https://github.com/django/django.git
synced 2025-08-09 05:18:56 +00:00
Simplified DeferredAttribute.__get__() a bit.
This commit is contained in:
parent
1a9459b88e
commit
efc1c73bf5
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class DeferredAttribute:
|
|||
return self
|
||||
data = instance.__dict__
|
||||
field_name = self.field.attname
|
||||
if data.get(field_name, self) is self:
|
||||
if field_name not in data:
|
||||
# Let's see if the field is part of the parent chain. If so we
|
||||
# might be able to reuse the already loaded value. Refs #18343.
|
||||
val = self._check_parent_chain(instance)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue