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

ovirt_storage_domain: Fix error message formating (#46678)

This commit is contained in:
Joey 2018-10-09 22:01:05 +08:00 committed by ansibot
parent 9e5305221a
commit 3c7a503a53

View file

@ -439,7 +439,7 @@ class StorageDomainModule(BaseModule):
else: else:
raise Exception( raise Exception(
"Can't bring storage to state `%s`, because Datacenter " "Can't bring storage to state `%s`, because Datacenter "
"%s is not UP" "%s is not UP" % (self.param('state'), dc.name)
) )
def _attached_sds_service(self, dc_name): def _attached_sds_service(self, dc_name):