--- pyanaconda/bootloader.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py index ab89d51..6573d70 100644 --- a/pyanaconda/bootloader.py +++ b/pyanaconda/bootloader.py @@ -390,8 +390,8 @@ class BootLoader(object): ret = True if self.disklabel_types: for disk in device.disks: - label_type = disk.format.labelType - if label_type not in self.disklabel_types: + label_type = getattr(disk.format, "labelType", None) + if label_type and label_type not in self.disklabel_types: types_str = ",".join(disklabel_types) self.errors.append(_("%s must have one of the following " "disklabel types: %s.") -- 1.7.3.4 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list