From c46a38c02f3f0d99c8659099176ad1266828b9b1 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 7 Apr 2016 09:29:43 +0200 Subject: Removed recaptcha. --- src/bootstrap.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/bootstrap.py b/src/bootstrap.py index f1624111..6d76d58f 100644 --- a/src/bootstrap.py +++ b/src/bootstrap.py @@ -49,10 +49,6 @@ application.config['SECURITY_PASSWORD_SALT'] = getattr(conf, if not application.config['SECURITY_PASSWORD_SALT']: application.config['SECURITY_PASSWORD_SALT'] = os.urandom(12) -application.config['RECAPTCHA_USE_SSL'] = True -application.config['RECAPTCHA_PUBLIC_KEY'] = conf.RECAPTCHA_PUBLIC_KEY -application.config['RECAPTCHA_PRIVATE_KEY'] = conf.RECAPTCHA_PRIVATE_KEY - db = SQLAlchemy(application) def populate_g(): -- cgit