Commit 8fce7978 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #23855 -- Removed unnecessary all() in tutorial 3.

parent 4252a14c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)