Browse Source

flaskr correct app name

pull/2340/head
David Lord 8 years ago
parent
commit
11f463f1bd
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
  1. 4
      examples/flaskr/flaskr/factory.py

4
examples/flaskr/flaskr/factory.py

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

Loading…
Cancel
Save