Skip to content
Snippets Groups Projects
Commit 80d81196 authored by Radko Krkoš's avatar Radko Krkoš
Browse files

Fix report feedback template fixture

* This was missed during the migration to Jinja 3.
* In Jinja 2.10, the parameter 'indentfirst' of function do_indent()
  was marked deprecated and a functionally identical 'first' was added.
* In Jinja 3.0, the deprecated functionality was removed, in this
  upstream commit:
  https://github.com/pallets/jinja/commit/b0015c72d5acbf93b9d99a1ce6167889338db85b

(Redmine issue: #7583)
parent 0b271547
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
{{ _('Message by user:') | wordwrap }} {{ _('Message by user:') | wordwrap }}
{{ text | wordwrap(width=75, break_long_words=False) | indent(width=4, indentfirst=True) }} {{ text | wordwrap(width=75, break_long_words=False) | indent(width=4, first=True) }}
{{ _('Link to report:') | wordwrap }} {{ _('Link to report:') | wordwrap }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment