From 3c60361866d4e14ec3fbceffa5751970de54fc51 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 27 Jun 2025 22:21:10 +0200 Subject: [PATCH] fix(configs): correct mismatched parentheses in template variables --- configs/cliff.debian.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/cliff.debian.toml b/configs/cliff.debian.toml index e66d055..881c2e2 100644 --- a/configs/cliff.debian.toml +++ b/configs/cliff.debian.toml @@ -1,6 +1,6 @@ [changelog] body = """\ -{{ get_env(name="PACKAGE_NAME" }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\ +{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\ {% for group, commits in commits | group_by(attribute="group") %} * {{ group | striptags | trim | upper_first }}:\ {% for commit in commits %} @@ -8,7 +8,7 @@ body = """\ {% endfor %}\ {% endfor %} - -- {{ get_env(name="AUTHOR_NAME" }} <{{ get_env(name="AUTHOR_MAIL" }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %} + -- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_MAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %} """