From 80cf94d694cd49d250553ff87ffbb5bd1fe0a2cb Mon Sep 17 00:00:00 2001 From: Tiberiu Chibici Date: Sun, 31 Mar 2019 23:15:23 +0300 Subject: [PATCH] Fixed bug: "The view YtManagerApp.views.first_time.Step1ApiKeyView didn't return an HttpResponse object" --- app/YtManagerApp/views/first_time.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/YtManagerApp/views/first_time.py b/app/YtManagerApp/views/first_time.py index 645653f..2761281 100644 --- a/app/YtManagerApp/views/first_time.py +++ b/app/YtManagerApp/views/first_time.py @@ -75,6 +75,8 @@ class Step1ApiKeyView(WizardStepMixin, FormView): if key is not None and len(key) > 0: appconfig.youtube_api_key = key + return super().form_valid(form) + # # Step 2: create admin user