commit | 71082079071b921df02974898f08ad433be70aca | [log] [tgz] |
---|---|---|
author | Armin Ronacher <armin.ronacher@active-4.com> | Sat Apr 12 14:19:36 2008 +0200 |
committer | Armin Ronacher <armin.ronacher@active-4.com> | Sat Apr 12 14:19:36 2008 +0200 |
tree | 36b8e37be54d4bffe42003564efa9b5c6bfed5f7 | |
parent | bf7c4ad3e98552bf9926218779dc4afbfe69cfc0 [diff] [blame] |
added support for new call statement --HG-- branch : trunk
diff --git a/jinja2/nodes.py b/jinja2/nodes.py index 00f6d62..b569a31 100644 --- a/jinja2/nodes.py +++ b/jinja2/nodes.py
@@ -222,7 +222,7 @@ class CallBlock(Stmt): """A node that represents am extended macro call.""" - fields = ('call', 'body') + fields = ('call', 'args', 'defaults', 'body') class Set(Stmt):