Update exception upon migration of database #1935

This commit is contained in:
Ozzie Isaacs 2021-04-15 12:05:03 +02:00 committed by GitHub
parent b38877e193
commit e13820bbf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -358,7 +358,7 @@ def _migrate_table(session, orm_class):
if column_name[0] != '_':
try:
session.query(column).first()
except exc.OperationalError as err:
except OperationalError as err:
log.debug("%s: %s", column_name, err.args[0])
if column.default is not None:
if sys.version_info < (3, 0):