From 6a1b3843dfcf206a980d94078da0da1b05d9da87 Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Fri, 22 May 2020 19:10:36 +0200 Subject: [PATCH] Add missing space. Because. --- core/views/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/views/auth.py b/core/views/auth.py index ab18a81..64fcba7 100644 --- a/core/views/auth.py +++ b/core/views/auth.py @@ -29,7 +29,7 @@ class LoginView(FormView): return context def form_valid(self, form): - user = authenticate(username=form.cleaned_data['email'],password=form.cleaned_data['password']) + user = authenticate(username=form.cleaned_data['email'], password=form.cleaned_data['password']) if user: if not get_user_otps(user): login(self.request, user)