summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-29 21:11:42 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-29 21:11:42 +0000
commit8ade80b4520254f4d96c24a342c3d1b532779eea (patch)
tree5edf6d9cdbdcf77cbbe625602a95cd5baac17ae8 /harddrive.py
parent6d535cc19ac20af7e51deb2b79657fa912c3fa5e (diff)
downloadanaconda-8ade80b4520254f4d96c24a342c3d1b532779eea.tar.gz
anaconda-8ade80b4520254f4d96c24a342c3d1b532779eea.tar.xz
anaconda-8ade80b4520254f4d96c24a342c3d1b532779eea.zip
fixup old hard drive for the case where it's not rooted at the base (not that old hard drive is used anymore
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/harddrive.py b/harddrive.py
index d432a7960..4624ea4ad 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -79,13 +79,13 @@ class OldHardDriveInstallMethod(InstallMethod):
def readHeaders(self):
self.mountMedia()
- hl = HeaderListFromFile(self.tree + "/RedHat/base/hdlist")
+ hl = HeaderListFromFile(self.tree + self.path + "/RedHat/base/hdlist")
self.umountMedia()
return hl
def mergeFullHeaders(self, hdlist):
self.mountMedia()
- hdlist.mergeFullHeaders(self.tree + "/RedHat/base/hdlist2")
+ hdlist.mergeFullHeaders(self.tree + self.path + "/RedHat/base/hdlist2")
self.umountMedia()