diff options
Diffstat (limited to 'django/views/generic/list.py')
| -rw-r--r-- | django/views/generic/list.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/views/generic/list.py b/django/views/generic/list.py index 2243bcec4a..ccb2185524 100644 --- a/django/views/generic/list.py +++ b/django/views/generic/list.py @@ -1,12 +1,12 @@ from __future__ import unicode_literals -from django.core.paginator import Paginator, InvalidPage from django.core.exceptions import ImproperlyConfigured +from django.core.paginator import InvalidPage, Paginator from django.db.models.query import QuerySet from django.http import Http404 from django.utils import six from django.utils.translation import ugettext as _ -from django.views.generic.base import TemplateResponseMixin, ContextMixin, View +from django.views.generic.base import ContextMixin, TemplateResponseMixin, View class MultipleObjectMixin(ContextMixin): |
