Fix autopart run with the new pyparted. --- partRequests.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/partRequests.py b/partRequests.py index e9b86c9..d4b41ce 100644 --- a/partRequests.py +++ b/partRequests.py @@ -522,11 +522,11 @@ class PartitionSpec(RequestSpec): for drive in self.drive: part = diskset.disks[drive].getPartitionByPath("/dev/%s" % self.device) - if not part: - # XXX kickstart might still call this before allocating the partitions - raise RuntimeError, "Checking the size of a partition which hasn't been allocated yet" + if part: + size += part.getSize(unit="MB") - size += part.getSize(unit="MB") + if size == 0: + return self.requestSize return size -- 1.6.1.3 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list