Commit 62ccc1b9 by Rene Moser

cloudstack: fix typo in variable, fixes get_domain()

parent bc4d51a4
......@@ -288,7 +288,7 @@ class AnsibleCloudStack:
args = {}
args['name'] = domain
args['listall'] = True
domain = self.cs.listDomains(**args)
domains = self.cs.listDomains(**args)
if domains:
self.domain = domains['domain'][0]
return self._get_by_key(key, self.domain)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment