| commit | 6ce170c496157ca994ceb90790067a6b845274a3 | [log] [tgz] | 
|---|---|---|
| author | Armin Ronacher <armin.ronacher@active-4.com> | Fri Apr 25 12:32:36 2008 +0200 | 
| committer | Armin Ronacher <armin.ronacher@active-4.com> | Fri Apr 25 12:32:36 2008 +0200 | 
| tree | 350223d08ca9c13bdb54b43e595df06d15d4d567 | |
| parent | 963f97d5ae0d780e2437672bee8fe490cc15555e [diff] [blame] | 
`IncludedTemplate` uses getattr rather then getitem now --HG-- branch : trunk
diff --git a/jinja2/compiler.py b/jinja2/compiler.py index 8282bc6..542beed 100644 --- a/jinja2/compiler.py +++ b/jinja2/compiler.py
@@ -793,7 +793,7 @@ def visit_ExprStmt(self, node, frame): self.newline(node) - self.visit(node, frame) + self.visit(node.node, frame) def visit_Output(self, node, frame): # if we have a known extends statement, we don't output anything