Revert use of 'can be at least' to 'must be at least' in minvalue validator

BZ https://bugzilla.redhat.com/show_bug.cgi?id=723969
This commit is contained in:
Rob Crittenden 2011-07-26 01:58:41 -04:00
parent 9a4ce988df
commit 87821f2049

View File

@ -1052,7 +1052,7 @@ class Int(Number):
"""
assert type(value) in (int, long)
if value < self.minvalue or value < MININT:
return _('can be at least %(minvalue)d') % dict(
return _('must be at least %(minvalue)d') % dict(
minvalue=self.minvalue,
)