summaryrefslogtreecommitdiffstats
path: root/anaconda_log.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
committerJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
commit0a562126d84c59a113231ae7ab38984f92d62153 (patch)
tree5e87b9094f4ebdc328979e3a0640dee5f1fc40cb /anaconda_log.py
parentdd200d781bd9012f562399c2ee69c23fe60d86b9 (diff)
downloadanaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.gz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.xz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.zip
another taroon merge. tagged before as before-taroon-merge, after as
after-taroon-merge this one adds s390 fixes, basic i/p series platform support, support for multiple kernels and one second stage, cmdline kickstart mode (nice for s390), some warning cleanups.
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 13f4434ed..7f2d12636 100644
--- a/anaconda_log.py
+++ b/anaconda_log.py
@@ -51,7 +51,7 @@ class Anaconda_LogFile:
self.logFile2 = None
def __call__ (self, format, *args):
- if not self.logFile:
+ if not self.logFile and not self.logFile2:
raise RuntimeError, "log file not open yet"
for file in [self.logFile, self.logFile2]: