From: Michael Elsdoerfer Date: Thu, 2 Oct 2008 12:37:04 +0000 (+0200) Subject: fixed erroneous example in README (thanks to robert) X-Git-Tag: 0.2~38 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=32c37eae12bfe839a8653a6f5f521885013baa15;p=django-tables2.git fixed erroneous example in README (thanks to robert) --- 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