From 4a69b639879872cf1a67099ff028ab167e69bbe3 Mon Sep 17 00:00:00 2001 From: "zhu.fanglei" Date: Thu, 21 May 2020 15:36:39 +0800 Subject: [PATCH] [Trivial]Add missing white space between words This is to add missing white space between words in log message. Change-Id: I052627dcd7808a7790adef50e0a6bc833f3461e4 --- ironic/drivers/modules/drac/bios.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/drivers/modules/drac/bios.py b/ironic/drivers/modules/drac/bios.py index b8d61c93da..cb306f7fb4 100644 --- a/ironic/drivers/modules/drac/bios.py +++ b/ironic/drivers/modules/drac/bios.py @@ -315,7 +315,7 @@ class DracWSManBIOS(base.BIOSInterface): commit_job_id = client.commit_pending_lifecycle_changes( reboot=reboot_needed) except drac_exceptions.BaseClientException as exc: - LOG.error('Failed to commit BIOS reset on node' + LOG.error('Failed to commit BIOS reset on node ' '%(node_uuid)s. Reason: %(error)s.', { 'node_uuid': node.uuid, 'error': exc})