diff options
| author | Tom Christie | 2015-01-19 15:22:38 +0000 |
|---|---|---|
| committer | Tom Christie | 2015-01-19 15:22:38 +0000 |
| commit | 3cc39ffbceffc5fdbb511d9a10e7732329e8baa4 (patch) | |
| tree | c2b0d159b8b66c723bf75de185a9429c2d2a857f /rest_framework/pagination.py | |
| parent | 6065cdbd939542dec79708615bc3e75b38834f41 (diff) | |
| download | django-rest-framework-3cc39ffbceffc5fdbb511d9a10e7732329e8baa4.tar.bz2 | |
NotImplemented -> NotImplementedError
Diffstat (limited to 'rest_framework/pagination.py')
| -rw-r--r-- | rest_framework/pagination.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rest_framework/pagination.py b/rest_framework/pagination.py index 1b7524c6..55c173df 100644 --- a/rest_framework/pagination.py +++ b/rest_framework/pagination.py @@ -132,13 +132,13 @@ class BasePagination(object): display_page_controls = False def paginate_queryset(self, queryset, request, view=None): # pragma: no cover - raise NotImplemented('paginate_queryset() must be implemented.') + raise NotImplementedError('paginate_queryset() must be implemented.') def get_paginated_response(self, data): # pragma: no cover - raise NotImplemented('get_paginated_response() must be implemented.') + raise NotImplementedError('get_paginated_response() must be implemented.') def to_html(self): # pragma: no cover - raise NotImplemented('to_html() must be implemented to display page controls.') + raise NotImplementedError('to_html() must be implemented to display page controls.') class PageNumberPagination(BasePagination): |
