flaskr correct app name
This commit is contained in:
parent
a4869eb4d2
commit
11f463f1bd
1 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue