fix tag filtering logic

The check for missing tags was continuing the inner loop instead of
the loop over deliverables.

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

@ -194,9 +194,14 @@ def main():
continue
if args.tag:
tags = deliv.tags
ignore = False
for t in args.tag:
if t not in tags:
continue
ignore = True
break
if ignore:
continue
tag_str = '(' + ', '.join(deliv.tags) + ')'
if args.missing_final and deliv.latest_release: