From: Armin Ronacher Date: Thu, 10 Apr 2008 18:51:49 +0000 (+0200) Subject: removed debug print X-Git-Tag: 2.0rc1~191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ba4c92f5e6bce36596d77482d6381f0036c0f89;p=thirdparty%2Fjinja.git removed debug print --HG-- branch : trunk --- diff --git a/jinja2/compiler.py b/jinja2/compiler.py index 65912c7a..5588a475 100644 --- a/jinja2/compiler.py +++ b/jinja2/compiler.py @@ -296,7 +296,6 @@ class CodeGenerator(NodeVisitor): block_frame = Frame() block_frame.inspect(block.body) block_frame.block = name - print block_frame.identifiers.__dict__ self.writeline('def block_%s(context):' % name, block, 1) self.pull_locals(block_frame) self.blockvisit(block.body, block_frame, True)