summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2018-12-12 18:49:47 +0100
committerGitHub <noreply@github.com>2018-12-12 18:49:47 +0100
commita394289b58b1773c4959ed768fdb325c91b2b589 (patch)
tree927623a98de79862de8a0a1bc9f5a675886cdee3 /docs
parent3a4558b84f76c1dbe54c8c38e90e4048c2bd3e9a (diff)
Fixed #30036 -- Removed unused imports in pagination example.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/pagination.txt2
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):