You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ObjectPaginator utility has been removed completely from the most
modern versions of Django. In preparation for the official release of
Django 1.0, I would switch to Paginator. Maybe you could do something like...
{{{
try:
from django.core.paginator import Paginator
except ImportError:
from django.core.paginator import ObjectPaginator as Paginator
}}}
...to help maintain a little backwards compatibility.
Original issue reported on code.google.com by [email protected] on 12 Aug 2008 at 8:59
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Aug 2008 at 8:59The text was updated successfully, but these errors were encountered: