summaryrefslogtreecommitdiffstats
path: root/iw/fdisk.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-16 21:42:56 +0000
committerMatt Wilson <msw@redhat.com>1999-09-16 21:42:56 +0000
commit2a2d25c45aeaf840b2955ef06b60327487f793b7 (patch)
treeefa9cc8f8317a61e39f4ce198328ed68f459823d /iw/fdisk.py
parent62bfd6e7cd109fb709b7118a157a2a3f796b388e (diff)
downloadanaconda-2a2d25c45aeaf840b2955ef06b60327487f793b7.tar.gz
anaconda-2a2d25c45aeaf840b2955ef06b60327487f793b7.tar.xz
anaconda-2a2d25c45aeaf840b2955ef06b60327487f793b7.zip
*** empty log message ***
Diffstat (limited to 'iw/fdisk.py')
-rw-r--r--iw/fdisk.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/fdisk.py b/iw/fdisk.py
index 546377dc0..b59100cef 100644
--- a/iw/fdisk.py
+++ b/iw/fdisk.py
@@ -3,6 +3,7 @@ from iw import *
from gnome.zvt import *
from os import execvp
from gui import _
+import isys
class FDiskWindow (InstallWindow):
@@ -42,7 +43,7 @@ class FDiskWindow (InstallWindow):
label = GtkLabel (_("Select drive to run fdisk on"))
drives = self.todo.drives.available ().keys ()
- drives.sort ()
+ drives.sort(isys.compareDrives)
for drive in drives:
button = GtkButton (drive)
button.connect ("clicked", self.button_clicked, drive)