mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-26 22:56:15 +01:00
Merge pull request #1595 from dcermak/use-defaults-for-pop-get
Provide default values for kwargs.get/pop
This commit is contained in:
commit
745ac7956b
@ -4110,7 +4110,7 @@ def get_results(
|
|||||||
# hmm the function name is a bit too generic - something like
|
# hmm the function name is a bit too generic - something like
|
||||||
# get_package_results_human would be better, but this would break the existing
|
# get_package_results_human would be better, but this would break the existing
|
||||||
# api (unless we keep get_results around as well)...
|
# api (unless we keep get_results around as well)...
|
||||||
format = kwargs.pop('format')
|
format = kwargs.pop('format', None)
|
||||||
if format is None:
|
if format is None:
|
||||||
format = '%(rep)-20s %(arch)-10s %(pkg)-30s %(status)s'
|
format = '%(rep)-20s %(arch)-10s %(pkg)-30s %(status)s'
|
||||||
r = []
|
r = []
|
||||||
@ -4118,7 +4118,7 @@ def get_results(
|
|||||||
failed = False
|
failed = False
|
||||||
multibuild_packages = kwargs.pop('multibuild_packages', [])
|
multibuild_packages = kwargs.pop('multibuild_packages', [])
|
||||||
show_excluded = kwargs.pop('showexcl', False)
|
show_excluded = kwargs.pop('showexcl', False)
|
||||||
code_filter = kwargs.get('code')
|
code_filter = kwargs.get('code', None)
|
||||||
for results in get_package_results(apiurl, project, package, **kwargs):
|
for results in get_package_results(apiurl, project, package, **kwargs):
|
||||||
r = []
|
r = []
|
||||||
for res, is_multi in result_xml_to_dicts(results):
|
for res, is_multi in result_xml_to_dicts(results):
|
||||||
|
Loading…
Reference in New Issue
Block a user