Commit 6e6f399f by Chris Jerdonek

Fixed oversight: literal->self.literal.

parent bf450600
......@@ -274,7 +274,7 @@ class Template(object):
Render a tag without escaping it.
"""
return literal(self.context.get(tag_name, ''))
return self.literal(self.context.get(tag_name, ''))
def render(self, context=None, **kwargs):
"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment