flaskr correct app name

This commit is contained in:
David Lord 2017-05-27 08:44:07 -07:00
parent a4869eb4d2
commit 11f463f1bd
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8

View file

@ -17,7 +17,7 @@ from flaskr.blueprints.flaskr import init_db
def create_app(config=None):
app = Flask(__name__)
app = Flask(__name__.split('.')[0])
app.config.update(dict(
DATABASE=os.path.join(app.root_path, 'flaskr.db'),
@ -61,4 +61,4 @@ def register_teardowns(app):
def close_db(error):
"""Closes the database again at the end of the request."""
if hasattr(g, 'sqlite_db'):
g.sqlite_db.close()
g.sqlite_db.close()