From 86751369e315c2584d6404a4504f3283cd297144 Mon Sep 17 00:00:00 2001 From: codl Date: Mon, 7 Aug 2017 14:59:38 +0200 Subject: [PATCH] augh --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 41ca52e..cddc786 100644 --- a/app.py +++ b/app.py @@ -32,4 +32,5 @@ migrate = Migrate(app, db) sentry = None if 'SENTRY_DSN' in app.config: from raven.contrib.flask import Sentry - sentry = Sentry(app, dsn=app.config['SENTRY_DSN'], release=version.version) + sentry = Sentry(app, dsn=app.config['SENTRY_DSN']) + app.config['SENTRY_CONFIG_RELEASE'] = version.version