Allowed more easily subclassing of BlockNode tags.
This commit is contained in:
parent
114b70ccf8
commit
b041850853
|
@ -59,7 +59,7 @@ class BlockNode(Node):
|
||||||
if block is None:
|
if block is None:
|
||||||
block = self
|
block = self
|
||||||
# Create new block so we can store context without thread-safety issues.
|
# Create new block so we can store context without thread-safety issues.
|
||||||
block = BlockNode(block.name, block.nodelist)
|
block = type(self)(block.name, block.nodelist)
|
||||||
block.context = context
|
block.context = context
|
||||||
context['block'] = block
|
context['block'] = block
|
||||||
result = block.nodelist.render(context)
|
result = block.nodelist.render(context)
|
||||||
|
|
Loading…
Reference in New Issue