From 96d6a9a6da1318d392cba4d6f82d1250cb1b6a21 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Wed, 9 Aug 2017 21:19:43 +0200 Subject: [PATCH] Docs: update link in pagination.py (#5321) The blog post referenced in the documentation has been since moved to a new location. --- rest_framework/pagination.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/pagination.py b/rest_framework/pagination.py index a4a5230ef..61e0a80b0 100644 --- a/rest_framework/pagination.py +++ b/rest_framework/pagination.py @@ -473,7 +473,7 @@ class CursorPagination(BasePagination): """ The cursor pagination implementation is necessarily complex. For an overview of the position/offset style we use, see this post: - http://cramer.io/2011/03/08/building-cursors-for-the-disqus-api + http://cra.mr/2011/03/08/building-cursors-for-the-disqus-api """ cursor_query_param = 'cursor' cursor_query_description = _('The pagination cursor value.')