From c9b3ef468aa24424b89e807d1ce7d1348e2d4662 Mon Sep 17 00:00:00 2001 From: "zhu.fanglei" Date: Mon, 11 Mar 2019 13:50:26 +0800 Subject: [PATCH] Fix missing print format error Missing print format will cause 'ValueError: unsupported format character' error, this is to fix it. Change-Id: I7f802073253b9e45ce0a89512122d9f470de4ed5 --- ironic/drivers/modules/ilo/inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/drivers/modules/ilo/inspect.py b/ironic/drivers/modules/ilo/inspect.py index e783c1f943..074228e3b6 100644 --- a/ironic/drivers/modules/ilo/inspect.py +++ b/ironic/drivers/modules/ilo/inspect.py @@ -258,7 +258,7 @@ class IloInspect(base.InspectInterface): 'connected or not for ProLiant Gen8 and Gen9 servers. ' 'Hence returns all the MACs present on the server. ' 'Please remove the ironic ports created for inactive ' - 'NICs manually for the node %(node)', + 'NICs manually for the node %(node)s', {"node": task.node.uuid}) task.node.save()