Fix the imports for the model db.

This commit is contained in:
yackob03 2014-01-31 11:14:07 -05:00
parent 62deddce24
commit acbb075d13

View file

@ -1,8 +1,8 @@
import logging
from app import app as application
from data.model import db as model_db
import model
logging.basicConfig(**application.config['LOGGING_CONFIG'])
@ -30,7 +30,7 @@ application.register_blueprint(webhooks, url_prefix='/webhooks')
def close_db(exc):
db = model.db
db = model_db
if not db.is_closed():
logger.debug('Disconnecting from database.')
db.close()