Merge "Fixed check for None in os_port"

This commit is contained in:
Zuul 2021-01-27 14:04:11 +00:00 committed by Gerrit Code Review
commit 051b270d36
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ def _needs_update(module, port, cloud):
return True
for key in compare_list_dict:
if not module.params[key]:
if module.params[key]:
if not port[key]:
return True