diff options
author | Matt Wilson <msw@redhat.com> | 2000-01-10 14:10:31 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-01-10 14:10:31 +0000 |
commit | 4bfb3bf6495161c5ad646129bb03bfb1a48b9dc2 (patch) | |
tree | 7183768d7fda1673516f852782711bb875babe7d | |
parent | 79b4b003cb0a88b4577cd249a61fd684bf3f4f48 (diff) | |
download | anaconda-4bfb3bf6495161c5ad646129bb03bfb1a48b9dc2.tar.gz anaconda-4bfb3bf6495161c5ad646129bb03bfb1a48b9dc2.tar.xz anaconda-4bfb3bf6495161c5ad646129bb03bfb1a48b9dc2.zip |
removed old Drives object (now, hopefully, unused)
-rw-r--r-- | todo.py | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -236,10 +236,6 @@ class Authentication: self.useBroadcast = 1 self.server = "" -class Drives: - def available (self): - return isys.hardDriveList () - class InstSyslog: def __init__ (self, root, log): self.pid = os.fork () @@ -283,7 +279,6 @@ class ToDo: self.auth = Authentication () self.desktop = Desktop () self.ddruidReadOnly = 0 - self.drives = Drives () self.badBlockCheck = 0 self.bootdisk = 0 self.liloImages = {} @@ -816,7 +811,7 @@ class ToDo: win = self.intf.waitWindow (_("Searching"), _("Searching for Red Hat Linux installations...")) - drives = self.drives.available ().keys () + drives = self.fstab.driveList() mdList = raid.startAllRaid(drives) for dev in mdList: |