summaryrefslogtreecommitdiffstats
path: root/anaconda_log.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-08-28 03:17:27 +0000
committerMatt Wilson <msw@redhat.com>2000-08-28 03:17:27 +0000
commitf213018f255a7c1e3e7677a96e6789727ce7a941 (patch)
tree49d81816059cb4a9350bf6d8e27902ab8aca7a2b /anaconda_log.py
parent429b6e18ef8e766c2963d91e1ff4c4134b5a50f5 (diff)
downloadanaconda-f213018f255a7c1e3e7677a96e6789727ce7a941.tar.gz
anaconda-f213018f255a7c1e3e7677a96e6789727ce7a941.tar.xz
anaconda-f213018f255a7c1e3e7677a96e6789727ce7a941.zip
two stupid things: 1) fix logging in recondfig mode, 2) don't die on ^Z in text mode
Diffstat (limited to 'anaconda_log.py')
-rw-r--r--anaconda_log.py2
1 files changed, 1 insertions, 1 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")