From 01ba541ce9cd4e8d8ef3fd1a8dde90379abf0caa Mon Sep 17 00:00:00 2001 From: Guillim Date: Tue, 18 Jun 2019 17:24:08 +0200 Subject: [PATCH] fixing trailing spaces (PEP8 requirement) --- app/authentification/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/authentification/views.py b/app/authentification/views.py index 78c8108a..24b0fe60 100644 --- a/app/authentification/views.py +++ b/app/authentification/views.py @@ -20,7 +20,7 @@ class SignupView(TemplateView): def post(self, request, *args, **kwargs): form = self.form_class(request.POST) - + # here we make sure that a post request won't trigger a subscription in case allow_signup is False if not bool(settings.ALLOW_SIGNUP): return redirect('signup')