check-compose: fix dict unpacking syntax
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
1aa79a63a6
commit
5e8167416d
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ loglevel: {{ checkcompose_loglevel }}
|
||||||
{% if checkcompose_subvariant_emails is defined %}
|
{% if checkcompose_subvariant_emails is defined %}
|
||||||
{% for subv, recdict in checkcompose_subvariant_emails.items() %}
|
{% for subv, recdict in checkcompose_subvariant_emails.items() %}
|
||||||
[{{ subv }}]
|
[{{ subv }}]
|
||||||
{% for rectype, recips in recdict %}
|
{% for rectype, recips in recdict.items() %}
|
||||||
{{ rectype }}: {{ recips|join(' ') }}
|
{{ rectype }}: {{ recips|join(' ') }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue