ack. On 07/23/2010 10:37 PM, David Cantrell wrote:
We tell the user if the partition is too large or too small, but we do not tell them what the allowable range is. --- storage/partitioning.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/storage/partitioning.py b/storage/partitioning.py index ba61227..e173909 100644 --- a/storage/partitioning.py +++ b/storage/partitioning.py @@ -1011,8 +1011,11 @@ def allocatePartitions(storage, disks, partitions, freespace): problem = "small" if problem: - raise PartitioningError("partition is too %s for %s formatting" - % (problem, _part.format.name)) + raise PartitioningError("partition is too %s for %s formatting " + "(allowable size is %d MB to %d MB)" + % (problem, _part.format.name, + _part.format.minSize, + _part.format.maxSize)) log.debug("checking freespace on %s" % _disk.name)
_______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list