diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-06-25 19:27:03 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-06-25 19:27:03 +0000 |
commit | dc44a06b95c25dd3dad62ebb2aae0290f279fb46 (patch) | |
tree | abb6c9cb69b11488f8eec1c86ce8bebcbf9458b5 /harddrive.py | |
parent | 631bacf0193b8a65eaec81043b1b03bfa329cc95 (diff) | |
download | anaconda-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.py | 8 |
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 |