mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Remove trailing whitespace in digital_ocean_domain
This commit is contained in:
@@ -145,7 +145,7 @@ class Domain(JsonfyMixIn):
|
||||
return False
|
||||
|
||||
domains = Domain.list_all()
|
||||
|
||||
|
||||
if id is not None:
|
||||
for domain in domains:
|
||||
if domain.id == id:
|
||||
@@ -203,10 +203,10 @@ def core(module):
|
||||
domain = None
|
||||
if "id" in module.params:
|
||||
domain = Domain.find(id=module.params["id"])
|
||||
|
||||
|
||||
if not domain and "name" in module.params:
|
||||
domain = Domain.find(name=module.params["name"])
|
||||
|
||||
|
||||
if not domain:
|
||||
module.exit_json(changed=False, msg="Domain not found.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user