From 5d5e784e94451f0e076231a95a70c5d3ddaf07c9 Mon Sep 17 00:00:00 2001 From: Shivanand Tendulker Date: Tue, 18 Sep 2018 08:11:07 -0400 Subject: [PATCH] Follow-up for commit 0e9f3d1b4620b0ad9ff6370132ba5a8d5f3cc21e This patch addresses minor comment given in the commit 0e9f3d1b4620b0ad9ff6370132ba5a8d5f3cc21e Change-Id: Ifa439779a22ef61f91cc79bd8f964c1d1a27758c --- proliantutils/ilo/ris.py | 2 +- proliantutils/redfish/redfish.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proliantutils/ilo/ris.py b/proliantutils/ilo/ris.py index 2aef1cea..58b56d78 100755 --- a/proliantutils/ilo/ris.py +++ b/proliantutils/ilo/ris.py @@ -1934,7 +1934,7 @@ class RISOperations(rest.RestConnectorBase, operations.IloOperations): if unsupported_settings: msg = ("Could not apply settings as one or more settings are" " not supported. Unsupported settings are %s." - "Supported settings are %s." % ( + " Supported settings are %s." % ( unsupported_settings, constants.SUPPORTED_BIOS_PROPERTIES)) raise exception.IloError(msg) diff --git a/proliantutils/redfish/redfish.py b/proliantutils/redfish/redfish.py index 1ba3ee07..88145e6e 100644 --- a/proliantutils/redfish/redfish.py +++ b/proliantutils/redfish/redfish.py @@ -1155,7 +1155,7 @@ class RedfishOperations(operations.IloOperations): if unsupported_settings: msg = ("Could not apply settings as one or more settings are" " not supported. Unsupported settings are %s." - "Supported settings are %s." % ( + " Supported settings are %s." % ( unsupported_settings, ilo_cons.SUPPORTED_REDFISH_BIOS_PROPERTIES)) raise exception.IloError(msg)