diff --git a/ipaserver/plugins/pwpolicy.py b/ipaserver/plugins/pwpolicy.py index 9e20bb7a4..816faffe0 100644 --- a/ipaserver/plugins/pwpolicy.py +++ b/ipaserver/plugins/pwpolicy.py @@ -491,7 +491,10 @@ class pwpolicy(LDAPObject): if minlife > maxlife: raise errors.ValidationError( name='maxlife', - error=_('Maximum password life must be greater than minimum.'), + error=_( + "Maximum password life must be equal to " + "or greater than the minimum." + ), ) def add_cospriority(self, entry, pwpolicy_name, rights=True):