From 40e63b92ac1d22c14b669fa45105e014099b5fad Mon Sep 17 00:00:00 2001 From: "M.Wiesner" Date: Sat, 13 Dec 2014 18:18:09 +0100 Subject: [PATCH] Update the_controller.rst Corrected error in the sample code. --- quick_tour/the_controller.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/the_controller.rst b/quick_tour/the_controller.rst index e6031ec8494..114b2e587b3 100644 --- a/quick_tour/the_controller.rst +++ b/quick_tour/the_controller.rst @@ -295,7 +295,7 @@ In a template, you can also access the ``Request`` object via the special {{ app.request.query.get('page') }} - {{ app.request.parameter('page') }} + {{ app.request.request.get('page') }} Persisting Data in the Session ------------------------------