From 06dc0b06266ec94f646f84e5cb57c097657ec232 Mon Sep 17 00:00:00 2001 From: Piotr Dobrowolski Date: Fri, 27 Mar 2020 21:28:05 +0100 Subject: [PATCH] changelog: fix render crash on None values --- templates/_changelog.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/_changelog.html b/templates/_changelog.html index 6554a96..0f5bb16 100644 --- a/templates/_changelog.html +++ b/templates/_changelog.html @@ -9,7 +9,7 @@ {%- else -%} , {%- endif -%} - {%- endif %} {{ key }} to {{ value|truncate(40) }} {% endfor %} + {%- endif %} {{ key }} to {{ value|string()|truncate(40) }} {% endfor %}

{% endfor %} {% endmacro %}