1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

ovirt_host_network: check for empty user_opts (#46695)

This commit is contained in:
bverschueren 2018-10-18 14:25:54 +02:00 committed by ansibot
parent ad3579b4ab
commit 8a671f54dd

View file

@ -222,7 +222,8 @@ def get_bond_options(mode, usr_opts):
)
opts_dict = DEFAULT_MODE_OPTS.get(mode, {})
opts_dict.update(**usr_opts)
if usr_opts is not None:
opts_dict.update(**usr_opts)
options.extend(
[otypes.Option(name=opt, value=value)