diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2018-12-12 18:49:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-12 18:49:47 +0100 |
| commit | a394289b58b1773c4959ed768fdb325c91b2b589 (patch) | |
| tree | 927623a98de79862de8a0a1bc9f5a675886cdee3 /docs | |
| parent | 3a4558b84f76c1dbe54c8c38e90e4048c2bd3e9a (diff) | |
Fixed #30036 -- Removed unused imports in pagination example.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/pagination.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/pagination.txt b/docs/topics/pagination.txt index 05c101321f..92d2bedb14 100644 --- a/docs/topics/pagination.txt +++ b/docs/topics/pagination.txt @@ -86,7 +86,7 @@ show how you can display the results. This example assumes you have a The view function looks like this:: - from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator + from django.core.paginator import Paginator from django.shortcuts import render def listing(request): |
