From fe8f106bb49f9c8fce44290276de856623ed2657 Mon Sep 17 00:00:00 2001 From: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> Date: Wed, 17 Jun 2026 16:47:04 +0200 Subject: [PATCH] Fix spelling. --- authentik/brands/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/brands/utils.py b/authentik/brands/utils.py index 3264737ad9..44e65dcd38 100644 --- a/authentik/brands/utils.py +++ b/authentik/brands/utils.py @@ -19,7 +19,7 @@ DEFAULT_BRAND = Brand(domain="fallback") def session_safe_mode(request: HttpRequest) -> bool: """Whether the current session is in brand "safe mode" (e.g. created via a recovery - link), in which case lock-out-prone customisations such as custom CSS are suppressed.""" + link), in which case lock-out-prone customization such as custom CSS are suppressed.""" session = getattr(request, "session", None) if session is None: return False