1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

fix log message related to bcrypt+autodetect

This commit is contained in:
Peter Bieringer 2024-03-18 06:50:30 +01:00
parent df0e97fab9
commit f0f4213760

View file

@ -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)