From: David Lehman <dlehman(a)redhat.com>
---
blivet/blivet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blivet/blivet.py b/blivet/blivet.py
index 1ca5e28..8a5c2f6 100644
--- a/blivet/blivet.py
+++ b/blivet/blivet.py
@@ -212,7 +212,7 @@ def do_it(self, callbacks=None):
# Set the boot partition's name on disk labels that support it
if dev.parted_partition.disk.supportsFeature(parted.DISK_TYPE_PARTITION_NAME):
ped_partition = dev.parted_partition.getPedPartition()
- ped_partition.setName(dev.format.name)
+ ped_partition.set_name(dev.format.name)
log.info("Setting label on %s to '%s'", dev, dev.format.name)
dev.disk.setup()
--
To view this commit on github, visit https://github.com/rhinstaller/blivet/commit/18432bc5ef3f629bf3df08324768cb…
> Looks good to me. Is this needed for F24 (blivet-1.x) as well?
No, the issue was introduced with the changes for the LVM RAID support which we don't have on the blivet-1.x branch.
--
To view this pull request on github, visit https://github.com/rhinstaller/blivet/pull/353