Minor string formatting follow-up to idrac jbod patch

Change-Id: Ia4d6ef705b0183c35c29ec53cef213aa5185651b
This commit is contained in:
Julia Kreger 2019-10-17 13:45:51 -07:00
parent 8e3f682e29
commit 43dd29d816

View File

@ -109,6 +109,6 @@ def wait_for_job_completion(node,
return
err_msg = _(
'There are unfinished jobs in the job '
'queue on node %(node_uuid)r ') % {'node_uuid': node.uuid}
'queue on node %(node_uuid)s.') % {'node_uuid': node.uuid}
LOG.warning(err_msg)
raise exception.DracOperationError(error=err_msg)