From 6aa1add4e93ae814f43be1200900475b5fe07cfa Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 3 Jun 2007 00:11:43 +0200 Subject: [PATCH] [svn] fixed indention in documentation example --HG-- branch : trunk --- docs/src/devrecipies.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/devrecipies.txt b/docs/src/devrecipies.txt index eb97aeb..2f97f7d 100644 --- a/docs/src/devrecipies.txt +++ b/docs/src/devrecipies.txt @@ -98,8 +98,8 @@ rendering. It applies the context processors on the context and consumes a def render_to_response(template, context, request=None): template = env.get_template(template) if request: - for processor in get_standard_processors(): - context.update(processor(request)) + for processor in get_standard_processors(): + context.update(processor(request)) return HttpResponse(template.render(context)) -- 2.26.2