diff options
Diffstat (limited to 'textw/partition_text.py')
-rw-r--r-- | textw/partition_text.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 403468146..b44f1481f 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -121,6 +121,9 @@ class PartitionWindow: # print "partition %s has type %d" %(get_partition_name(part), part.type) part = disk.next_partition(part) continue + if not part.is_active(): + part = disk.next_partition(part) + continue # ignore the tiny < 1 MB partitions (#119479) if getPartSizeMB(part) <= 1.0 and not part.get_flag(parted.PARTITION_BOOT): part = disk.next_partition(part) |