summaryrefslogtreecommitdiffstats
path: root/partitioning.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-06-21 15:08:53 +0000
committerMike Fulbright <msf@redhat.com>2001-06-21 15:08:53 +0000
commit477de8f36ea88ee5771f939ed774da31ee921303 (patch)
treee584ab1ad61771ad4846e59e2d203e3b67e0dc71 /partitioning.py
parente8380d4886bd71a7b282b12c34a974099f523ef0 (diff)
downloadanaconda-477de8f36ea88ee5771f939ed774da31ee921303.tar.gz
anaconda-477de8f36ea88ee5771f939ed774da31ee921303.tar.xz
anaconda-477de8f36ea88ee5771f939ed774da31ee921303.zip
clarify error message
Diffstat (limited to 'partitioning.py')
-rw-r--r--partitioning.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitioning.py b/partitioning.py
index dc9d942ad..06076a32f 100644
--- a/partitioning.py
+++ b/partitioning.py
@@ -279,7 +279,7 @@ def doPartitionSizeCheck(newrequest):
# XXX need to figure out the size for partitions specified by cyl range
if newrequest.size and newrequest.size > newrequest.fstype.getMaxSize():
- return _("This %s partition exceeds the maximum size of %s MB.") %(newrequest.fstype.getName(), newrequest.fstype.getMaxSize())
+ return _("The size of the %s partition (size = %s MB) exceeds the maximum size of %s MB.") %(newrequest.fstype.getName(), newrequest.size, newrequest.fstype.getMaxSize())
else:
return None