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
If a template is opened with incompatible encoding (such as unicode text but no UTF-8 identification on PY2, or potential encoding mismatches on PY3), a Unicode error will be raised that notes the offending character position but no line is identified.
A potential way to address this is to return a mako.exceptions.RuntimeException that includes the debug information and the original exception.
If a template is opened with incompatible encoding (such as unicode text but no UTF-8 identification on PY2, or potential encoding mismatches on PY3), a Unicode error will be raised that notes the offending character position but no line is identified.
A potential way to address this is to return a
mako.exceptions.RuntimeException
that includes the debug information and the original exception.see https://github.com/sqlalchemy/mako/blob/master/mako/util.py#L169
The text was updated successfully, but these errors were encountered: