summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-25 19:27:03 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-25 19:27:03 +0000
commitdc44a06b95c25dd3dad62ebb2aae0290f279fb46 (patch)
treeabb6c9cb69b11488f8eec1c86ce8bebcbf9458b5 /harddrive.py
parent631bacf0193b8a65eaec81043b1b03bfa329cc95 (diff)
downloadanaconda-dc44a06b95c25dd3dad62ebb2aae0290f279fb46.tar.gz
anaconda-dc44a06b95c25dd3dad62ebb2aae0290f279fb46.tar.xz
anaconda-dc44a06b95c25dd3dad62ebb2aae0290f279fb46.zip
get the root path into all of the install methods
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/harddrive.py b/harddrive.py
index 5875b040c..326a4fbae 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -95,8 +95,8 @@ class OldHardDriveInstallMethod(InstallMethod):
rc.append(self.device)
return rc
- def __init__(self, device, type, path):
- InstallMethod.__init__(self)
+ def __init__(self, device, type, path, rootPath):
+ InstallMethod.__init__(self, rootPath)
self.device = device
self.path = path
self.fstype = type
@@ -207,8 +207,8 @@ class HardDriveInstallMethod(InstallMethod):
rc.append(self.device)
return rc
- def __init__(self, device, type, path, messageWindow):
- InstallMethod.__init__(self)
+ def __init__(self, device, type, path, messageWindow, rootPath):
+ InstallMethod.__init__(self, rootPath)
self.device = device
self.path = path
self.fstype = type