summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--backend.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d449a74f..566c2f01d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
* fsset.py: String fix (#231761).
* iw/upgrade_swap_gui.py: Likewise.
+ * backend.py (AnacondaBackend.initLog): Set instLog attribute on the
+ backend so yum has somewhere to log to.
+
2007-03-12 David Cantrell <dcantrell@redhat.com>
* loader2/net.c (doDhcp): Return NULL in instances where DHCPv4_DISABLE
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: