From b94ea541cb77a59ddbcb72d0bf3a3b8362e0fab9 Mon Sep 17 00:00:00 2001 From: Dennis Buchhorn Date: Mon, 11 Dec 2023 09:15:40 +0100 Subject: [PATCH] fix[__init__.py]: syntax error --- radicale-auth-ldap/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale-auth-ldap/__init__.py b/radicale-auth-ldap/__init__.py index 7fbebbc..65989cc 100644 --- a/radicale-auth-ldap/__init__.py +++ b/radicale-auth-ldap/__init__.py @@ -89,7 +89,7 @@ class UserCache: ## Check if user password is correct if self.cache[hashedUserName].checkSecret(hashedPassword): return True - else + else: ## Delete cache entry if password is wrong self.cache.pop(hashedUserName)