From: Marc Fiuczynski Date: Tue, 11 Apr 2006 21:01:10 +0000 (+0000) Subject: fix internal bug in calling _nodeNotInstalled function X-Git-Tag: myplc-0_4-rc1~19 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=7f60a98018578e2303a51f752721eb35a89ed461 fix internal bug in calling _nodeNotInstalled function --- diff --git a/source/BootManager.py b/source/BootManager.py index a118f66..af5efa3 100755 --- a/source/BootManager.py +++ b/source/BootManager.py @@ -240,7 +240,7 @@ class BootManager: SendHardwareConfigToPLC.Run( self.VARS, self.LOG ) ChainBootNode.Run( self.VARS, self.LOG ) else: - self._nodeNotInstalled() + _nodeNotInstalled() def _newRun(): # implements the new install logic, which will first check @@ -252,7 +252,7 @@ class BootManager: return 0 self.VARS['BOOT_STATE']= 'rins' UpdateBootStateWithPLC.Run( self.VARS, self.LOG ) - self._rins() + _rinsRun() def _bootRun(): # implements the boot logic, which consists of first @@ -266,7 +266,7 @@ class BootManager: SendHardwareConfigToPLC.Run( self.VARS, self.LOG ) ChainBootNode.Run( self.VARS, self.LOG ) else: - self._nodeNotInstalled() + _nodeNotInstalled() def _debugRun():