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
In the default django.core.paginator.Paginator, the Page class is retrieved via the _get_page on the Paginator object. However, the DefaultPaginator and the LazyPaginator in endless_pagination.paginators disregard this and use CustomPage as the Page class directly. This should be changed to match the API that Django 1.7 provides.
The text was updated successfully, but these errors were encountered:
In the default
django.core.paginator.Paginator
, thePage
class is retrieved via the_get_page
on thePaginator
object. However, theDefaultPaginator
and theLazyPaginator
inendless_pagination.paginators
disregard this and useCustomPage
as thePage
class directly. This should be changed to match the API that Django 1.7 provides.The text was updated successfully, but these errors were encountered: