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
1 changed files with 1 additions and 1 deletions

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()