Просмотр исходного кода

fix log message related to bcrypt+autodetect

Peter Bieringer 1 год назад
Родитель
Сommit
f0f4213760
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      radicale/auth/htpasswd.py

+ 1 - 1
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)