Explorar o código

fix log message related to bcrypt+autodetect

Peter Bieringer %!s(int64=2) %!d(string=hai) anos
pai
achega
f0f4213760
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)