From 0249625b8d4b87964143cbc446f8de80db2c7608 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Mon, 27 Jul 2009 16:52:07 +0000 Subject: [PATCH] no tabs... --- source/BootManager.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/BootManager.py b/source/BootManager.py index 1d9a5b5..40f7b56 100755 --- a/source/BootManager.py +++ b/source/BootManager.py @@ -172,7 +172,7 @@ class BootManager: def _nodeNotInstalled(message='MSG_NODE_NOT_INSTALLED'): # called by the _xxxState() functions below upon failure self.VARS['RUN_LEVEL']= 'failboot' - notify = getattr(notify_messages, message) + notify = getattr(notify_messages, message) self.VARS['STATE_CHANGE_NOTIFY']= 1 self.VARS['STATE_CHANGE_NOTIFY_MESSAGE']= notify raise BootManagerException, notify @@ -193,18 +193,18 @@ class BootManager: InstallInit.Run( self.VARS, self.LOG ) ret = ValidateNodeInstall.Run( self.VARS, self.LOG ) - if ret == 1: + if ret == 1: WriteModprobeConfig.Run( self.VARS, self.LOG ) MakeInitrd.Run( self.VARS, self.LOG ) WriteNetworkConfig.Run( self.VARS, self.LOG ) CheckForNewDisks.Run( self.VARS, self.LOG ) SendHardwareConfigToPLC.Run( self.VARS, self.LOG ) ChainBootNode.Run( self.VARS, self.LOG ) - elif ret == -1: + elif ret == -1: _nodeNotInstalled('MSG_NODE_FILESYSTEM_CORRUPT') - elif ret == -2: + elif ret == -2: _nodeNotInstalled('MSG_NODE_MOUNT_FAILED') - elif ret == -3: + elif ret == -3: _nodeNotInstalled('MSG_NODE_MISSING_KERNEL') else: _nodeNotInstalled() -- 2.43.0