From e50c9aa047a0411a2bc850a1f77f525f21b5cbb3 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Wed, 19 Jul 2017 09:41:20 +0100 Subject: [PATCH] Remove required secret key --- backend/pycon/settings/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pycon/settings/test.py b/backend/pycon/settings/test.py index 80b9dcc4c4..4536c10efb 100644 --- a/backend/pycon/settings/test.py +++ b/backend/pycon/settings/test.py @@ -1,4 +1,4 @@ from .base import * # noqa -SECRET_KEY = env('SECRET_KEY') +SECRET_KEY = 'this-key-should-only-be-used-for-tests'