Comment 23 for bug 1038522

Revision history for this message
Vincent Saelzler (kickflippin22) wrote :

Someone on a forum suggested a tweak in PartitionModel.py.
Supposedly, it solves:
AttributeError: 'Partition' object has no attribute 'parent'

Original
--------------------------------------------------
parentItem = childItem.parent()
---------------------------------------------------

Tweak
---------------------------------------------------
try:
        parentItem = childItem.parent()
except AttributeError:
        parentItem = self.rootItem
--------------------------------------------------

Reference:
http://askubuntu.com/questions/287338/kubuntu-13-04-installer-crashes-on-manual-partition-setup