From aadcc42eb30796af8a8ad5a7bfbcc2d773f5b94b Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Mon, 18 Mar 2024 06:50:30 +0100 Subject: [PATCH] fix log message related to bcrypt+autodetect --- radicale/auth/htpasswd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/auth/htpasswd.py b/radicale/auth/htpasswd.py index ed087db3..0476acf7 100644 --- a/radicale/auth/htpasswd.py +++ b/radicale/auth/htpasswd.py @@ -83,7 +83,7 @@ class Auth(auth.BaseAuth): import bcrypt except ImportError as e: raise RuntimeError( - "The htpasswd encryption method 'bcrypt' or 'auto' requires " + "The htpasswd encryption method 'bcrypt' or 'autodetect' requires " "the bcrypt module.") from e if encryption == "bcrypt": self._verify = functools.partial(self._bcrypt, bcrypt)