Replaced property() usage with decorator in a couple places.

This commit is contained in:
Berker Peksag 2016-08-25 00:23:16 +03:00 committed by Tim Graham
parent a3abbe1fcb
commit 3c97ba2a0d
2 changed files with 2 additions and 2 deletions

View File

@ -560,9 +560,9 @@ class ModelAdmin(BaseModelAdmin):
]
return urlpatterns
@property
def urls(self):
return self.get_urls()
urls = property(urls)
@property
def media(self):

View File

@ -993,6 +993,7 @@ class QuerySet(object):
# PUBLIC INTROSPECTION ATTRIBUTES #
###################################
@property
def ordered(self):
"""
Returns True if the QuerySet is ordered -- i.e. has an order_by()
@ -1004,7 +1005,6 @@ class QuerySet(object):
return True
else:
return False
ordered = property(ordered)
@property
def db(self):