From 8e48ca47e956ad2ec7eb19fca6eae3a58c0bf6c8 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 27 Jun 2014 09:50:29 -0400 Subject: [PATCH] [1.7.x] Fixed #22912 -- Warned about a common mistake in tutorial 5. Backport of 1e8411259f from master --- docs/intro/tutorial05.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt index 24a7b29807..545a84ad80 100644 --- a/docs/intro/tutorial05.txt +++ b/docs/intro/tutorial05.txt @@ -381,6 +381,8 @@ With that ready, we can ask the client to do some work for us:: >>> response = client.get('/polls/') >>> response.content '\n\n\n \n\n' + >>> # If the following doesn't work, you probably omitted the call to + >>> # setup_test_environment() described above >>> response.context['latest_question_list'] []