From 32c37eae12bfe839a8653a6f5f521885013baa15 Mon Sep 17 00:00:00 2001 From: Michael Elsdoerfer Date: Thu, 2 Oct 2008 14:37:04 +0200 Subject: [PATCH] fixed erroneous example in README (thanks to robert) --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 2f1ae27..6c83294 100644 --- a/README +++ b/README @@ -369,7 +369,7 @@ works as expected. Alternatively, you may use the ``paginate`` feature: table = MyTable(queryset) - table.paginate(QuerySetPaginator, page=1, 10, padding=2) + table.paginate(QuerySetPaginator, 10, page=1, padding=2) for row in table.rows.page(): pass table.paginator # new attributes -- 2.26.2