From f47f9013cbdb34a61bb683bd794a8a21951481bb Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Tue, 28 Feb 2017 15:38:43 +0100 Subject: [PATCH] Fix wrong KEY secret settings --- SciPost_v1/settings/production.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SciPost_v1/settings/production.py b/SciPost_v1/settings/production.py index 3b906862b..5de7b1fc6 100644 --- a/SciPost_v1/settings/production.py +++ b/SciPost_v1/settings/production.py @@ -24,7 +24,7 @@ CSRF_COOKIE_SECURE = True # Email EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' -EMAIL_HOST = get_secret("EMAIL_HOST_USER") +EMAIL_HOST = get_secret("EMAIL_HOST") EMAIL_HOST_USER = get_secret("EMAIL_HOST_USER") EMAIL_HOST_PASSWORD = get_secret("EMAIL_HOST_PASSWORD") -- GitLab