aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap.py')
-rw-r--r--src/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap.py b/src/bootstrap.py
index 7b6a6c8c..912c35ae 100644
--- a/src/bootstrap.py
+++ b/src/bootstrap.py
@@ -25,7 +25,7 @@ from flask_sqlalchemy import SQLAlchemy
# Create Flask application
application = Flask('web')
-if os.environ.get('JARR_TESTING', False) == 'true':
+if os.environ.get('Newspipe_TESTING', False) == 'true':
application.debug = logging.DEBUG
application.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///:memory:'
application.config['TESTING'] = True
bgstack15