From 8fce7978307058f9bc7d9f815858f27fdd954409 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 17 Nov 2014 18:10:50 +0100 Subject: [PATCH] Fixed #23855 -- Removed unnecessary all() in tutorial 3. --- docs/intro/tutorial03.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 7b40062f28..b428c9afb8 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -409,7 +409,7 @@ rewritten: def index(request): - latest_question_list = Question.objects.all().order_by('-pub_date')[:5] + latest_question_list = Question.objects.order_by('-pub_date')[:5] context = {'latest_question_list': latest_question_list} return render(request, 'polls/index.html', context)