aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-14 11:47:50 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-14 11:47:50 +0100
commit15ea3e975595133eebe180ced9d605e3d55175df (patch)
tree5c44caab89f2aa5a29136625ecc9bedcd89e8ba8 /src/bootstrap.py
parentRemoved proxy support. Not so used and better to set at the system level. (diff)
downloadnewspipe-15ea3e975595133eebe180ced9d605e3d55175df.tar.gz
newspipe-15ea3e975595133eebe180ced9d605e3d55175df.tar.bz2
newspipe-15ea3e975595133eebe180ced9d605e3d55175df.zip
Changed some strane URLs, maybe due to the renaming of pyAggr3g470r to JARR...
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 cd1e71e4..24d6ff27 100644
--- a/src/bootstrap.py
+++ b/src/bootstrap.py
@@ -23,7 +23,7 @@ from flask.ext.sqlalchemy import SQLAlchemy
# Create Flask application
application = Flask('web')
-if os.environ.get('PYAGG_TESTING', False) == 'true':
+if os.environ.get('JARR_TESTING', False) == 'true':
application.debug = logging.DEBUG
application.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///:memory:'
application.config['TESTING'] = True
bgstack15