Changeset 7353
- Timestamp:
- 03/23/08 05:14:32 (8 months ago)
- Files:
-
- django/trunk/django/core/paginator.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/paginator.py
r7306 r7353 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
