Fix typo in fsset.py
bootDev.device.getName() instead of bootDev.getName()
---
fsset.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fsset.py b/fsset.py
index 466f89d..88545f0 100644
--- a/fsset.py
+++ b/fsset.py
@@ -1610,7 +1610,7 @@ MAILADDR root
ret['boot'] = (bootDev.device, N_("EFI System Partition"))
return ret
- if bootDev.getName() == "RAIDDevice":
+ if bootDev.device.getName() == "RAIDDevice":
ret['boot'] = (bootDev.device, N_("RAID Device"))
ret['mbr'] = (bl.drivelist[0], N_("Master Boot Record (MBR)"))
return ret
--
1.6.1.3
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|