When doing a custom disk layout, free space was showing 'Unknown' for the filesystem type. This patch blanks out the Type field for free space. --- iw/partition_gui.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/iw/partition_gui.py b/iw/partition_gui.py index cea465d..87f168f 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -928,6 +928,7 @@ class PartitionWindow(InstallWindow): ptype = _("Unknown") if part.type & parted.PARTITION_FREESPACE: devname = _("Free") + ptype = "" else: devname = "%s" % device.path self.tree[iter]['Device'] = devname -- 1.6.2.5 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list