cloudstack: fix project name must not be case sensitiv
This commit is contained in:
parent
5c4415b821
commit
2c1df46167
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ class AnsibleCloudStackProject(AnsibleCloudStack):
|
||||||
projects = self.cs.listProjects(**args)
|
projects = self.cs.listProjects(**args)
|
||||||
if projects:
|
if projects:
|
||||||
for p in projects['project']:
|
for p in projects['project']:
|
||||||
if project in [ p['name'], p['id']]:
|
if project.lower() in [ p['name'].lower(), p['id']]:
|
||||||
self.project = p
|
self.project = p
|
||||||
break
|
break
|
||||||
return self.project
|
return self.project
|
||||||
|
|
Loading…
Reference in a new issue