summaryrefslogtreecommitdiffstats
path: root/harddrive.py
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 /harddrive.py
parent73e685a6af3811c94832a98760b43ff41aa637bf (diff)
downloadanaconda-163d01bc10237563d39b1a1e531b1337c10d7fb6.tar.gz
anaconda-163d01bc10237563d39b1a1e531b1337c10d7fb6.tar.xz
anaconda-163d01bc10237563d39b1a1e531b1337c10d7fb6.zip
Fix parameter passing so ISO image installs work again.
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py2
1 files changed, 1 insertions, 1 deletions
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()