From ecf4ed246ae192f8d381b799b921a892fd7afa85 Mon Sep 17 00:00:00 2001 From: Ali Vakilzade Date: Sat, 18 Jul 2015 15:05:49 +0430 Subject: [PATCH] Fixed signature of ModelAdmin.get_paginator() in docs. --- docs/ref/contrib/admin/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 1183da3744..15c9eefd60 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1746,7 +1746,7 @@ templates used by the :class:`ModelAdmin` views: documentation for more details. One difference is that the level may be passed as a string label in addition to integer/constant. -.. method:: ModelAdmin.get_paginator(queryset, per_page, orphans=0, allow_empty_first_page=True) +.. method:: ModelAdmin.get_paginator(request, queryset, per_page, orphans=0, allow_empty_first_page=True) Returns an instance of the paginator to use for this view. By default, instantiates an instance of :attr:`paginator`.