Django

Code

Show
Ignore:
Timestamp:
07/08/08 00:29:23 (6 months ago)
Author:
mtredinnick
Message:

Fixed #7670 -- Fixed a couple of missed changes from [7865]. Patch from jshaffer.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/admin/views/main.py

    r7865 r7869  
    612612 
    613613    def get_results(self, request): 
    614         paginator = QuerySetPaginator(self.query_set, self.lookup_opts.admin.list_per_page) 
     614        paginator = Paginator(self.query_set, self.lookup_opts.admin.list_per_page) 
    615615 
    616616        # Get the number of objects, with admin filters applied.