Fixed a needless list() coercion in in ChangeList. Refs #10163.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10624 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2009-04-22 22:16:32 +00:00
parent c00e8d2064
commit 855a58f963
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class ChangeList(object):
# Get the list of objects to display on this page.
if (self.show_all and can_show_all) or not multi_page:
result_list = list(self.query_set)
result_list = self.query_set._clone()
else:
try:
result_list = paginator.page(self.page_num+1).object_list