From 491108a46811b824508ee16fb02070f8d5a49e1a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 14 Feb 2016 12:28:41 +0100 Subject: more simple to just use os.urandom for the secret key. --- src/bootstrap.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/bootstrap.py') diff --git a/src/bootstrap.py b/src/bootstrap.py index 24d6ff27..f7a3754c 100644 --- a/src/bootstrap.py +++ b/src/bootstrap.py @@ -39,10 +39,8 @@ application.config['PREFERRED_URL_SCHEME'] = scheme set_logging(conf.LOG_PATH, log_level=conf.LOG_LEVEL) -# Create dummy secrey key so we can use sessions -application.config['SECRET_KEY'] = getattr(conf, 'WEBSERVER_SECRET', None) -if not application.config['SECRET_KEY']: - application.config['SECRET_KEY'] = os.urandom(12) +# Create secrey key so we can use sessions +application.config['SECRET_KEY'] = os.urandom(12) application.config['RECAPTCHA_USE_SSL'] = True application.config['RECAPTCHA_PUBLIC_KEY'] = conf.RECAPTCHA_PUBLIC_KEY -- cgit