From 7f60a98018578e2303a51f752721eb35a89ed461 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Tue, 11 Apr 2006 21:01:10 +0000 Subject: [PATCH] fix internal bug in calling _nodeNotInstalled function --- source/BootManager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(): -- 2.43.0