From 6efb627903a68c7d1eea5b6cf080a367b2584251 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 6 Jan 2026 17:30:11 +0100 Subject: [PATCH] fix typo --- radicale/auth/htpasswd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/auth/htpasswd.py b/radicale/auth/htpasswd.py index dd66dfbd..1c4b2b55 100644 --- a/radicale/auth/htpasswd.py +++ b/radicale/auth/htpasswd.py @@ -123,9 +123,9 @@ class Auth(auth.BaseAuth): self._has_bcrypt = True if self._encryption == "autodetect": if self._htpasswd_bcrypt_use == 0: - logger.info("auth htpasswd encryption is 'radicale.auth.htpasswd_encryption.%s' and bycrypt module found, but currently not required", self._encryption) + logger.info("auth htpasswd encryption is 'radicale.auth.htpasswd_encryption.%s' and bcrypt module found, but currently not required", self._encryption) else: - logger.info("auth htpasswd encryption is 'radicale.auth.htpasswd_encryption.%s' and bycrypt module found (bcrypt entries found: %d)", self._encryption, self._htpasswd_bcrypt_use) + logger.info("auth htpasswd encryption is 'radicale.auth.htpasswd_encryption.%s' and bcrypt module found (bcrypt entries found: %d)", self._encryption, self._htpasswd_bcrypt_use) if self._encryption == "bcrypt": self._verify = functools.partial(self._bcrypt, bcrypt) else: