summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-04-28 18:42:17 +0000
committerChris Lumens <clumens@redhat.com>2005-04-28 18:42:17 +0000
commit163d01bc10237563d39b1a1e531b1337c10d7fb6 (patch)
treebde7f4616d458349ec403e2d8a205d9ea5b25ae9
parent73e685a6af3811c94832a98760b43ff41aa637bf (diff)
downloadanaconda-163d01bc10237563d39b1a1e531b1337c10d7fb6.tar.gz
anaconda-163d01bc10237563d39b1a1e531b1337c10d7fb6.tar.xz
anaconda-163d01bc10237563d39b1a1e531b1337c10d7fb6.zip
Fix parameter passing so ISO image installs work again.
-rw-r--r--ChangeLog3
-rw-r--r--harddrive.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 70a7edb2d..aa37be186 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
* fsset.py (readFstab): Don't skip bind mounts with an fstype of none
on upgrades (#151458).
+ * harddrive.py (HardDriveInstallMethod.__init__): Fix parameter
+ passing so ISO image installs work again.
+
2005-04-28 Peter Jones <pjones@redhat.com>:
* mediacheck.h: add FRAGMENT_SUM_LENGTH here, fix parsepvd prototype.
diff --git a/harddrive.py b/harddrive.py
index 4f344a989..78e4ec5a1 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -213,5 +213,5 @@ class HardDriveInstallMethod(InstallMethod):
# Go ahead and poke through the directory looking for interesting
# iso images
self.mountDirectory()
- self.discImages = findIsoImages(self.isoDir + '/' + self.path, messageWindow)
+ self.discImages = findIsoImages(self.isoDir + '/' + self.path, self.messageWindow)
self.umountDirectory()