From: Armin Ronacher Date: Sat, 2 Jun 2007 22:11:43 +0000 (+0200) Subject: [svn] fixed indention in documentation example X-Git-Tag: 2.0rc1~295 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6aa1add4e93ae814f43be1200900475b5fe07cfa;p=jinja2.git [svn] fixed indention in documentation example --HG-- branch : trunk --- 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))