mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added default result of None in catch statement
This commit is contained in:
parent
43da26404b
commit
015cf1f785
1 changed files with 2 additions and 0 deletions
|
@ -264,6 +264,7 @@ DRY_RUN_MSGS = 'DryRun Mode:'
|
|||
|
||||
def convert_to_lower(data):
|
||||
"""Convert all uppercase keys in dict with lowercase_
|
||||
|
||||
Args:
|
||||
data (dict): Dictionary with keys that have upper cases in them
|
||||
Example.. FooBar == foo_bar
|
||||
|
@ -758,6 +759,7 @@ def create(client, subnet_id, allocation_id, client_token=None,
|
|||
err_msg = str(e)
|
||||
success = False
|
||||
changed = False
|
||||
result = None
|
||||
|
||||
return success, changed, err_msg, result
|
||||
|
||||
|
|
Loading…
Reference in a new issue