From 1e8411259f14f2ef788cc4e7c2a4cdbb537d39b3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 27 Jun 2014 09:50:29 -0400 Subject: [PATCH] Fixed #22912 -- Warned about a common mistake in tutorial 5. --- 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'] []