1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-09-26 13:10:54 +00:00

Fixed F821 (undefined-name): Undefined name e

This commit is contained in:
Teal Dulcet 2023-12-23 05:56:07 -08:00
parent 4b9ea63c58
commit bf3967143d

View File

@ -167,7 +167,7 @@ def migration_12(env):
dropcmd = "DROP TABLE %s" % table
c.execute(dropcmd)
except:
print("Failed to drop table", table, e)
print("Failed to drop table", table)
# Save.
conn.commit()
conn.close()