diff options
author | Mike Fulbright <msf@redhat.com> | 2001-08-01 22:12:12 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-08-01 22:12:12 +0000 |
commit | 73f509b718539a253d5ed97453b20c5263c65ca5 (patch) | |
tree | ed2855473c0451b96f26f6feb62b0a8cadc9f6af /textw | |
parent | f41a27148076e587ab64b9ddce89f2a7ec446efd (diff) | |
download | anaconda-73f509b718539a253d5ed97453b20c5263c65ca5.tar.gz anaconda-73f509b718539a253d5ed97453b20c5263c65ca5.tar.xz anaconda-73f509b718539a253d5ed97453b20c5263c65ca5.zip |
sort drives before putting in drive list
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 844f8e34c..4afac42f5 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -246,6 +246,7 @@ class PartitionWindow: driveLbl = Label(_("Allowable Drives:")) subgrid.setField(driveLbl, 0, 0) disks = self.diskset.disks.keys() + disks.sort() drivelist = CheckboxTree(height=2, scroll=1) if not request.drive: for disk in disks: |