diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-11-18 20:45:51 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-11-18 20:45:51 +0000 |
commit | fbd97388187a08587890dc01ea14df91227d74db (patch) | |
tree | 433af264f39b9a6ce4c5dc2e20e32cbfbfc40e03 /textw | |
parent | fda834d4b0831ef0400f03d8e3bf95880b364037 (diff) | |
download | anaconda-fbd97388187a08587890dc01ea14df91227d74db.tar.gz anaconda-fbd97388187a08587890dc01ea14df91227d74db.tar.xz anaconda-fbd97388187a08587890dc01ea14df91227d74db.zip |
bye bye fdisk option. people who know enough to use fdisk can switch to a tty
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partmethod_text.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/textw/partmethod_text.py b/textw/partmethod_text.py index e19530c13..d79ae1bc8 100644 --- a/textw/partmethod_text.py +++ b/textw/partmethod_text.py @@ -25,19 +25,12 @@ class PartitionMethod: _(PARTMETHOD_TYPE_DESCR_TEXT), [ (_("Autopartition"), "auto"), (_("Disk Druid"), "ds"), - (_("fdisk"), "fd"), TEXT_BACK_BUTTON ], + TEXT_BACK_BUTTON ], width = 50, help = "parttool") if rc == TEXT_BACK_CHECK: return INSTALL_BACK - elif rc == "fd": - partitions.useAutopartitioning = 0 - partitions.useFdisk = 1 - elif rc == "ds": - partitions.useAutopartitioning = 0 - partitions.useFdisk = 0 else: partitions.useAutopartitioning = 1 - partitions.useFdisk = 0 return INSTALL_OK |