Files @ 8014ac73587d
Branch filter:

Location: kallithea/kallithea/templates/email/comment.txt

mads
mail: drop unicode filter from templates

Unicode is the default in py3, and we no longer pass any non-string arguments
that need stringification before rendering.

This is backing out a part of 4fbab9d5be4d.
<%page args="author,text,status,close=False" />\
${author|n}:

%if status:
${_('Status change:')|n} \
${status|n}

%endif
%if close:
${_('The pull request has been closed.')|n}

%endif
${text|n}

## Trailing empty line