Merge "Minor string formatting follow-up to idrac jbod patch"

This commit is contained in:
Zuul 2019-10-18 12:35:28 +00:00 committed by Gerrit Code Review
commit 76d1feca14
1 changed files with 1 additions and 1 deletions

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)