summaryrefslogtreecommitdiff
path: root/migrate/changeset/databases/firebird.py
diff options
context:
space:
mode:
authoriElectric <unknown>2010-09-07 02:25:29 +0200
committeriElectric <unknown>2010-09-07 02:25:29 +0200
commit653e723ce1932673eb5f4936ced84df9383b131b (patch)
treee0e0c971f4ab6065778d38e2e81f327bdaa0625a /migrate/changeset/databases/firebird.py
parent28f06524b5428b2692b0915d2de3d6996ff19372 (diff)
downloadsqlalchemy-migrate-653e723ce1932673eb5f4936ced84df9383b131b.tar.gz
move all exception classes to migrate.exceptions
Diffstat (limited to 'migrate/changeset/databases/firebird.py')
-rw-r--r--migrate/changeset/databases/firebird.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/migrate/changeset/databases/firebird.py b/migrate/changeset/databases/firebird.py
index 297fe6c..f880035 100644
--- a/migrate/changeset/databases/firebird.py
+++ b/migrate/changeset/databases/firebird.py
@@ -1,10 +1,12 @@
"""
Firebird database specific implementations of changeset classes.
"""
-
-from migrate.changeset import ansisql, exceptions, SQLA_06
from sqlalchemy.databases import firebird as sa_base
+from migrate import exceptions
+from migrate.changeset import ansisql, SQLA_06
+
+
if SQLA_06:
FBSchemaGenerator = sa_base.FBDDLCompiler
else: