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

Merge pull request #12995 from resmo/fix/cloudstack-utils

cloudstack: clean up unneeded ";"
This commit is contained in:
Matt Martz 2015-11-01 12:23:47 -06:00
commit 2ee5bb5e55

View file

@ -130,11 +130,11 @@ class AnsibleCloudStack(object):
# Optionally limit by a list of keys # Optionally limit by a list of keys
if only_keys and key not in only_keys: if only_keys and key not in only_keys:
continue; continue
# Skip None values # Skip None values
if value is None: if value is None:
continue; continue
if key in current_dict: if key in current_dict: