Browse Source

fixing trailing spaces (PEP8 requirement)

pull/250/head
Guillim 5 years ago
parent
commit
01ba541ce9
1 changed files with 1 additions and 1 deletions
  1. 2
      app/authentification/views.py

2
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')

Loading…
Cancel
Save