Fix a typo in the pagination settings docs

This commit is contained in:
Kurt McKee 2019-12-05 13:37:41 -06:00
commit 3f1d4edea3

View file

@ -997,7 +997,7 @@ subsequent pages at ``.../page/2/`` etc, you could set ``PAGINATION_PATTERNS``
as follows::
PAGINATION_PATTERNS = (
(1, '{url}', '{save_as}',
(1, '{url}', '{save_as}'),
(2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
)