From 44643850080a40f445c563c2aa61b4c8eb33bcc1 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Thu, 11 Oct 2012 11:57:15 -0500 Subject: Clean up size sets immediately after allocation run. (#864771) --- pyanaconda/storage/partitioning.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyanaconda/storage/partitioning.py b/pyanaconda/storage/partitioning.py index f0e01913c..4f14cb5f6 100644 --- a/pyanaconda/storage/partitioning.py +++ b/pyanaconda/storage/partitioning.py @@ -770,6 +770,9 @@ def doPartitioning(storage): partition.req_base_size = partition.size partition.req_size = partition.size finally: + # these are only valid for one allocation run + storage.size_sets = [] + # The number and thus the name of partitions may have changed now, # allocatePartitions() takes care of this for new partitions, but not # for pre-existing ones, so we update the name of all partitions here -- cgit