Skip to content

Commit

Permalink
fix log message related to bcrypt+autodetect
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiering committed Mar 18, 2024
1 parent df0e97f commit f0f4213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicale/auth/htpasswd.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, configuration: config.Configuration) -> None:
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)
Expand Down

0 comments on commit f0f4213

Please sign in to comment.