diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2004-08-26 05:50:48 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2004-08-26 05:50:48 +0000 |
commit | 5881740bd9804d70e9d2f180c4977f40e4fe1ed4 (patch) | |
tree | 7d813af734eff759c9cf26ce381a989c5118cbc7 /textw | |
parent | 4b8008174c1ce86cef7dd055ddbd76cda688175e (diff) | |
download | anaconda-5881740bd9804d70e9d2f180c4977f40e4fe1ed4.tar.gz anaconda-5881740bd9804d70e9d2f180c4977f40e4fe1ed4.tar.xz anaconda-5881740bd9804d70e9d2f180c4977f40e4fe1ed4.zip |
Actually show small boot partitions
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 38a948310..403468146 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -122,7 +122,7 @@ class PartitionWindow: part = disk.next_partition(part) continue # ignore the tiny < 1 MB partitions (#119479) - if getPartSizeMB(part) <= 1.0 and not part.type & parted.PARTITION_BOOT: + if getPartSizeMB(part) <= 1.0 and not part.get_flag(parted.PARTITION_BOOT): part = disk.next_partition(part) continue |