1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 01:36:16 +02:00

Fix "osc results --xml..."

For now, "osc results --xml..." ignores the "--show-excluded" option
(that's what we did in the past).

Fixes: PR#297 ("results --xml causes a stack trace")
This commit is contained in:
Marcus Huewe 2017-05-17 23:33:27 +02:00
parent 2b7cef3b33
commit 900ee88bfa

View File

@ -5053,6 +5053,9 @@ Please submit there instead, or use --nodevelproject to force direct submission.
if not opts.no_multibuild: if not opts.no_multibuild:
kwargs['multibuild'] = kwargs['locallink'] = True kwargs['multibuild'] = kwargs['locallink'] = True
if opts.xml or opts.csv: if opts.xml or opts.csv:
# hmm should we filter excluded repos here as well?
# for now, ignore --show-excluded
del kwargs['showexcl']
for xml in get_package_results(**kwargs): for xml in get_package_results(**kwargs):
if opts.xml: if opts.xml:
print(xml, end='') print(xml, end='')