show tags in list-deliverables verbose output

Change-Id: I8b69f567cbcae517ff82de2cc41329ea6472978e
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann
2017-11-11 12:07:08 -05:00
parent c5f2666da7
commit 4824e2098c

View File

@@ -145,6 +145,7 @@ def main():
verbose_template += ' {type:15}'
if not args.model:
verbose_template += ' {model:15}'
verbose_template += ' {tags}'
csvfile = None
if args.csvfile:
@@ -196,6 +197,8 @@ def main():
for t in args.tag:
if t not in tags:
continue
tag_str = '(' + ', '.join(deliv.tags) + ')'
if args.missing_final and deliv.latest_release:
if not ('rc' in deliv.latest_release or
'a' in deliv.latest_release or
@@ -221,6 +224,7 @@ def main():
team=deliv.team,
type=deliv.type,
model=deliv.model,
tags=tag_str,
))
elif args.repos:
if args.group_key and cur_group != deliv_group: