From 0812c9a3bce7060705d7116ec7c95924826efccf Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 12 Feb 2019 21:18:27 +0200 Subject: [PATCH] Fix import in alembic --- alembic/env.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/alembic/env.py b/alembic/env.py index 5da5e604..def7f3cd 100644 --- a/alembic/env.py +++ b/alembic/env.py @@ -7,10 +7,9 @@ from os.path import abspath, dirname sys.path.insert(0, dirname(dirname(abspath(__file__)))) -from mautrix_telegram.base import Base +from mautrix_telegram.db import Base from mautrix_telegram.config import Config from alchemysession import AlchemySessionContainer -import mautrix_telegram.db # this is the Alembic Config object, which provides # access to the values within the .ini file in use.