From 815e31d9a083a19541af877ce0afa010705d83d0 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 20 Jan 2026 11:53:13 +0100 Subject: [PATCH] Resolve syntax warning in Pyton 3.14 --- src/pretix/control/views/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/views/auth.py b/src/pretix/control/views/auth.py index a1514de730..f4cc13335c 100644 --- a/src/pretix/control/views/auth.py +++ b/src/pretix/control/views/auth.py @@ -363,7 +363,7 @@ class Forgot(TemplateView): else: messages.info(request, _('If the address is registered to valid account, then we have sent you an email containing further instructions.')) - return redirect('control:auth.forgot') + return redirect('control:auth.forgot') else: return self.get(request, *args, **kwargs)