summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-11-20 21:25:39 +0000
committerErik Troan <ewt@redhat.com>2000-11-20 21:25:39 +0000
commit61519732c7cbf0632c5dbdec20af5a04be71dfcb (patch)
tree1be5ccf9db5e73aa222a0ec81a6cd553055fc53e /harddrive.py
parent60efd137c83528b7e9aff5eb21b361888e0e4266 (diff)
downloadanaconda-61519732c7cbf0632c5dbdec20af5a04be71dfcb.tar.gz
anaconda-61519732c7cbf0632c5dbdec20af5a04be71dfcb.tar.xz
anaconda-61519732c7cbf0632c5dbdec20af5a04be71dfcb.zip
fix for installing from iso's not in root of device
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 1141e6bd9..fe1fb0613 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -194,7 +194,7 @@ class HardDriveInstallMethod(InstallMethod):
# Go ahead and poke through the directory looking for interesting
# iso images
self.mountDirectory()
- files = os.listdir(self.isoDir)
+ files = os.listdir(self.isoDir + '/' + self.path)
arch = iutil.getArch()