1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2024-11-24 02:37:05 +00:00

Fixed F821 (undefined-name): Undefined name e

This commit is contained in:
Teal Dulcet 2023-12-23 05:56:07 -08:00 committed by Joshua Tauberer
parent 618c466b84
commit 775a4223de

View File

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