diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-06-27 04:15:50 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-06-27 04:15:50 +0000 |
commit | a4692d2a021a2add9a2252d49022b04e024607d9 (patch) | |
tree | 1c4a7ff1b1a2407943bc298f3e659032a0ff5f9f /textw | |
parent | ef6b9a9094c9d753dcc77c360143a90faae34f1e (diff) | |
download | anaconda-a4692d2a021a2add9a2252d49022b04e024607d9.tar.gz anaconda-a4692d2a021a2add9a2252d49022b04e024607d9.tar.xz anaconda-a4692d2a021a2add9a2252d49022b04e024607d9.zip |
fix kickstart bootloader and partitioning
move setting of the fsset out of gui and tui and into partitioningComplete
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 5adb8fffe..5e18ccc0c 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -803,13 +803,7 @@ class PartitionWindow: self.intf.messageWindow(_("No Root Partition"), _("Must have a / partition to install on.")) continue - self.fsset.reset() - for request in self.partitions.requests: - # XXX improve sanity checking - if not request.fstype or (request.fstype.isMountable() and not request.mountpoint): - continue - entry = request.toEntry() - self.fsset.add (entry) + screen.popHelpLine() screen.popWindow() return INSTALL_OK |