summaryrefslogtreecommitdiffstats
path: root/textw/partition_text.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2004-08-26 05:50:48 +0000
committerPaul Nasrat <pnasrat@redhat.com>2004-08-26 05:50:48 +0000
commit5881740bd9804d70e9d2f180c4977f40e4fe1ed4 (patch)
tree7d813af734eff759c9cf26ce381a989c5118cbc7 /textw/partition_text.py
parent4b8008174c1ce86cef7dd055ddbd76cda688175e (diff)
downloadanaconda-5881740bd9804d70e9d2f180c4977f40e4fe1ed4.tar.gz
anaconda-5881740bd9804d70e9d2f180c4977f40e4fe1ed4.tar.xz
anaconda-5881740bd9804d70e9d2f180c4977f40e4fe1ed4.zip
Actually show small boot partitions
Diffstat (limited to 'textw/partition_text.py')
-rw-r--r--textw/partition_text.py2
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