diff options
-rw-r--r-- | anaconda_log.py | 2 | ||||
-rw-r--r-- | log.py | 2 | ||||
-rw-r--r-- | text.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/anaconda_log.py b/anaconda_log.py index 0a4348c78..bbaacdbc7 100644 --- a/anaconda_log.py +++ b/anaconda_log.py @@ -6,7 +6,7 @@ class LogFile: self.logFile.close () def open (self, serial, reconfigOnly, test): - if serial or reconfigOnly: + if serial: self.logFile = open("/tmp/install.log", "w") elif reconfigOnly: self.logFile = open("/tmp/reconfig.log", "w") @@ -6,7 +6,7 @@ class LogFile: self.logFile.close () def open (self, serial, reconfigOnly, test): - if serial or reconfigOnly: + if serial: self.logFile = open("/tmp/install.log", "w") elif reconfigOnly: self.logFile = open("/tmp/reconfig.log", "w") @@ -855,7 +855,7 @@ class InstallInterface: self.drawFrame() # uncomment this line to make the installer quit on <Ctrl+Z> # handy for quick debugging. - self.screen.suspendCallback(killSelf, self.screen) +# self.screen.suspendCallback(killSelf, self.screen) # uncomment this line to drop into the python debugger on <Ctrl+Z> # --VERY handy-- #self.screen.suspendCallback(debugSelf, self.screen) |