diff options
author | Chris Lumens <clumens@redhat.com> | 2007-03-12 16:21:57 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-03-12 16:21:57 +0000 |
commit | 5b8e52aeede00864e75f97233791ec71a19c56c4 (patch) | |
tree | afb59b182a6390b7bd73e52acf8fd0aaa917e9dc /backend.py | |
parent | b8bf057a99fc5d6230ca52f130ca884d8104891e (diff) | |
download | anaconda-5b8e52aeede00864e75f97233791ec71a19c56c4.tar.gz anaconda-5b8e52aeede00864e75f97233791ec71a19c56c4.tar.xz anaconda-5b8e52aeede00864e75f97233791ec71a19c56c4.zip |
Set instLog attribute on the backend so yum has somewhere to log to.
Diffstat (limited to 'backend.py')
-rw-r--r-- | backend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.py b/backend.py index 181c0dc3d..9b68e3dc3 100644 --- a/backend.py +++ b/backend.py @@ -147,7 +147,7 @@ class AnacondaBackend: except OSError: pass - instLog = open(instLogName, "w+") + self.instLog = open(instLogName, "w+") # dont start syslogd if we arent creating filesystems if flags.setupFilesystems: |