Refs #8248 - GenericRelations descriptors now return self when accessed via class
These were missed in r9550 git-svn-id: http://code.djangoproject.com/svn/django/trunk@9562 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9c33d74f1d
commit
a44d0aace3
|
@ -59,7 +59,7 @@ class GenericForeignKey(object):
|
|||
|
||||
def __get__(self, instance, instance_type=None):
|
||||
if instance is None:
|
||||
raise AttributeError, u"%s must be accessed via instance" % self.name
|
||||
return self
|
||||
|
||||
try:
|
||||
return getattr(instance, self.cache_attr)
|
||||
|
@ -183,7 +183,7 @@ class ReverseGenericRelatedObjectsDescriptor(object):
|
|||
|
||||
def __get__(self, instance, instance_type=None):
|
||||
if instance is None:
|
||||
raise AttributeError, "Manager must be accessed via instance"
|
||||
return self
|
||||
|
||||
# This import is done here to avoid circular import importing this module
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
|
|
Loading…
Reference in New Issue