Ticket #6823: paginator.patch
File paginator.patch, 498 bytes (added by , 17 years ago) |
---|
-
django/core/paginator.py
173 173 if self._count is None: 174 174 try: 175 175 self._count = self.object_list.count() 176 except AttributeError:176 except TypeError: 177 177 self._count = len(self.object_list) 178 178 return self._count 179 179 count = property(_get_count)