From 60d0e9582d0967a5143f269d3794838fdd8d83c6 Mon Sep 17 00:00:00 2001 From: Daniel afx Date: Fri, 4 Feb 2022 14:43:10 +0000 Subject: [PATCH] load forest.config --- flask/forest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/forest/__init__.py b/flask/forest/__init__.py index e3f93bf..e3f1f56 100644 --- a/flask/forest/__init__.py +++ b/flask/forest/__init__.py @@ -12,7 +12,7 @@ from flask import ( from flask_sqlalchemy import SQLAlchemy app = Flask(__name__) -app.config.from_object("project.config.Config") +app.config.from_object("forest.config.Config") db = SQLAlchemy(app)