check-compose: fix dict unpacking syntax

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-06-24 19:13:59 -07:00
parent 1aa79a63a6
commit 5e8167416d
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ loglevel: {{ checkcompose_loglevel }}
{% if checkcompose_subvariant_emails is defined %}
{% for subv, recdict in checkcompose_subvariant_emails.items() %}
[{{ subv }}]
{% for rectype, recips in recdict %}
{% for rectype, recips in recdict.items() %}
{{ rectype }}: {{ recips|join(' ') }}
{% endfor %}
{% endfor %}