diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-28 03:17:27 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-28 03:17:27 +0000 |
commit | f213018f255a7c1e3e7677a96e6789727ce7a941 (patch) | |
tree | 49d81816059cb4a9350bf6d8e27902ab8aca7a2b /log.py | |
parent | 429b6e18ef8e766c2963d91e1ff4c4134b5a50f5 (diff) | |
download | anaconda-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 'log.py')
-rw-r--r-- | log.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |