You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This snippet gives an error (Mako 0.8, Python 2.6.6).
>>> Template('hello ${data|entity}!').render(data="world")
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/srv/openerp/.buildout/eggs/Mako-0.8.0-py2.6.egg/mako/template.py", line 443, in render
return runtime._render(self, self.callable_, args, data)
File "/srv/openerp/.buildout/eggs/Mako-0.8.0-py2.6.egg/mako/runtime.py", line 783, in _render
**_kwargs_for_callable(callable_, data))
File "/srv/openerp/.buildout/eggs/Mako-0.8.0-py2.6.egg/mako/runtime.py", line 815, in _render_context
_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
File "/srv/openerp/.buildout/eggs/Mako-0.8.0-py2.6.egg/mako/runtime.py", line 841, in _exec_template
callable_(context, *args, **kwargs)
File "memory:0x1e70d50", line 22, in render_body
File "/srv/openerp/.buildout/eggs/Mako-0.8.0-py2.6.egg/mako/filters.py", line 92, in escape_entities
return str(text).translate(self.codepoint2entity)
TypeError: expected a character buffer object
The text was updated successfully, but these errors were encountered:
the "entity" filter doesn't seem to work anyway even in 0.7.3:
Template('hello ${data|entity}!').render(data="<world")
return compat.text_type(text).translate(self.codepoint2entity)
TypeError: character mapping must return integer, None or unicode
Migrated issue, originally created by Anonymous
This snippet gives an error (Mako 0.8, Python 2.6.6).
The text was updated successfully, but these errors were encountered: