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

ovirt_vms: Raise proper error when template isn't found (#30306)

This commit is contained in:
Ondra Machacek 2017-10-04 10:43:28 +02:00 committed by ansibot
parent 04f0b5adca
commit 70f221d57a

View file

@ -599,8 +599,14 @@ class VmsModule(BaseModule):
t for t in templates
if t.version.version_number == self.param('template_version')
]
if templates:
template = templates[0]
if not templates:
raise ValueError(
"Template with name '%s' and version '%s' was not found'" % (
self.param('template'),
self.param('template_version')
)
)
template = templates[0]
return template