From 65ab6b3bd0970bb62defff5acc7cc30d76eb096a Mon Sep 17 00:00:00 2001 From: melissaml Date: Sun, 9 Oct 2016 11:35:43 +0800 Subject: [PATCH] Fix a typo in deploy.py Removed redundant 'is' Change-Id: I83157aff2002eb01a65904aa267172e685d99ccb --- ironic/drivers/modules/ilo/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic/drivers/modules/ilo/deploy.py b/ironic/drivers/modules/ilo/deploy.py index b716e2df4d..601a2cb82e 100644 --- a/ironic/drivers/modules/ilo/deploy.py +++ b/ironic/drivers/modules/ilo/deploy.py @@ -369,7 +369,7 @@ class IloPXEDeploy(iscsi_deploy.ISCSIDeploy): :returns: states.DELETED """ # Powering off the Node before disabling secure boot. If the node is - # is in POST, disable secure boot will fail. + # in POST, disable secure boot will fail. manager_utils.node_power_action(task, states.POWER_OFF) _disable_secure_boot_if_supported(task) return super(IloPXEDeploy, self).tear_down(task)