summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-04-27 23:39:13 +0000
committerGerrit Code Review <review@openstack.org>2023-04-27 23:39:13 +0000
commitb8c82362226749feea025e5711d4cf233b7b7dab (patch)
tree27576ab181031e058264271a6398a82ab65c0fd5
parentc42c2efe9532ae9d2dfa984c73556f9a6e58a82c (diff)
parente0c0b771efb6c4d63ac80a53c76e07b95f4f2fcc (diff)
downloadironic-b8c82362226749feea025e5711d4cf233b7b7dab.tar.gz
Merge "[iRMC] Fix typo of Python string format in log message"
-rw-r--r--ironic/drivers/modules/irmc/inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/modules/irmc/inspect.py b/ironic/drivers/modules/irmc/inspect.py
index f7c2ad7ba..64708ff9b 100644
--- a/ironic/drivers/modules/irmc/inspect.py
+++ b/ironic/drivers/modules/irmc/inspect.py
@@ -236,7 +236,7 @@ def _inspect_hardware(node, existing_traits=None, **kwargs):
"with the server, please check if you have set them "
"correctly.")
error = (_("Inspection failed for node %(node_id)s "
- "with the following error: %(error)s. (advice)s") %
+ "with the following error: %(error)s. %(advice)s") %
{'node_id': node.uuid, 'error': e, 'advice': advice})
raise exception.HardwareInspectionFailure(error=error)