diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-07 15:04:10 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-07 15:04:10 +0000 |
commit | 4d8f952497baa58310a05bbe55af7486ca8e17f0 (patch) | |
tree | 9646ab6dbfc8a417d4900de0e39836dcd7a5015f /iw | |
parent | 2a3c54d78fca1989825547901c1fb7f9d40942e8 (diff) | |
download | anaconda-4d8f952497baa58310a05bbe55af7486ca8e17f0.tar.gz anaconda-4d8f952497baa58310a05bbe55af7486ca8e17f0.tar.xz anaconda-4d8f952497baa58310a05bbe55af7486ca8e17f0.zip |
use all drives for gui ddruid
Diffstat (limited to 'iw')
-rw-r--r-- | iw/rootpartition.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/rootpartition.py b/iw/rootpartition.py index 29f9b76d5..c0da71c68 100644 --- a/iw/rootpartition.py +++ b/iw/rootpartition.py @@ -57,7 +57,8 @@ class PartitionWindow (InstallWindow): from gnomepyfsedit import fsedit if not self.todo.ddruid: - self.todo.ddruid = fsedit(1, ['hda'], []) + self.todo.ddruid = \ + fsedit(1, self.todo.drives.available ().keys (), []) self.todo.ddruid.setCallback (self.enableCallback, self) self.bin = GtkFrame (None, _obj = self.todo.ddruid.getWindow ()) |