# HG changeset patch # User Mads Kiilerich # Date 1494461115 -7200 # Node ID 80c301105d71a835eff094eddc09a26b9c54dd8d # Parent 5b3568c99cc317848428a28ad7c0a36cb6af440e config: remove unused DbManage import and adjust other missing imports diff -r 5b3568c99cc3 -r 80c301105d71 kallithea/config/app_cfg.py --- a/kallithea/config/app_cfg.py Tue May 09 17:49:31 2017 +0200 +++ b/kallithea/config/app_cfg.py Thu May 11 02:05:15 2017 +0200 @@ -24,7 +24,7 @@ from tg import hooks from tg.configuration import AppConfig from tg.support.converters import asbool -import alembic +import alembic.config from alembic.script.base import ScriptDirectory from alembic.migration import MigrationContext from sqlalchemy import create_engine @@ -33,14 +33,13 @@ from kallithea.lib.middleware.simplegit import SimpleGit from kallithea.lib.middleware.simplehg import SimpleHg from kallithea.lib.auth import set_available_permissions -from kallithea.lib.db_manage import DbManage from kallithea.lib.utils import load_rcextensions, make_ui, set_app_settings, set_vcs_config, \ set_indexer_config, check_git_version, repo2db_mapper from kallithea.lib.utils2 import str2bool +import kallithea.model.base from kallithea.model.scm import ScmModel import formencode -import kallithea log = logging.getLogger(__name__)