diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-22 15:11:48 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-22 15:11:48 +0000 |
commit | 98b463d49c32ee2fd185f8393d804863297be95c (patch) | |
tree | 4ae960ca312f8ccfaa265c32c3fbd8a30b1dc50e | |
parent | 7dad9b6d54dae28df9544dc9e948443c012e172e (diff) | |
download | anaconda-98b463d49c32ee2fd185f8393d804863297be95c.tar.gz anaconda-98b463d49c32ee2fd185f8393d804863297be95c.tar.xz anaconda-98b463d49c32ee2fd185f8393d804863297be95c.zip |
sort drives
-rw-r--r-- | text.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -389,7 +389,9 @@ class PartitionWindow: fstab.append ((dev, mntpoint)) if not todo.ddruid: - todo.ddruid = fsedit(0, todo.drives.available ().keys (), fstab) + drives = todo.drives.available ().keys () + drives.sort () + todo.ddruid = fsedit(0, drives, fstab) dir = todo.ddruid.edit () for partition, mount, fstype, size in todo.ddruid.getFstab (): todo.addMount(partition, mount, fstype) |