diff --git a/mural/templatetags/comments_list.py b/mural/templatetags/comments_list.py index f53a89f..6fcd642 100644 --- a/mural/templatetags/comments_list.py +++ b/mural/templatetags/comments_list.py @@ -18,7 +18,7 @@ def comments_list(request, post): paginator = Paginator(comments, 5) try: - page_number = int(request.GET.get('page', 1)) + page_number = 1 except ValueError: raise Http404 -- libgit2 0.21.2