mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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:
parent
9a4ce988df
commit
87821f2049
@ -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,
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user