From 8f1230e189c0a111a73621a951fbe41546f1aa35 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Fri, 11 Nov 2022 13:48:52 +0100 Subject: [PATCH] Make the linter happy --- lib/pp_admintools/handler/ldap_password.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pp_admintools/handler/ldap_password.py b/lib/pp_admintools/handler/ldap_password.py index c15b7c5..ea865f1 100644 --- a/lib/pp_admintools/handler/ldap_password.py +++ b/lib/pp_admintools/handler/ldap_password.py @@ -32,7 +32,7 @@ LOG = logging.getLogger(__name__) _ = XLATOR.gettext ngettext = XLATOR.ngettext -__version__ = '0.3.1' +__version__ = '0.3.2' # ============================================================================= @@ -373,12 +373,12 @@ class LdapPasswordHandler(HandlingObject): if rounds < handler.min_rounds: msg = _("The value for the calculation rounds has to be at least {}.").format( - handler.min_rounds) + handler.min_rounds) raise WrongRoundsError(msg) if rounds > handler.max_rounds: msg = _("The value for the calculation rounds has to at most {}.").format( - handler.max_rounds) + handler.max_rounds) raise WrongRoundsError(msg) return rounds -- 2.39.5