From 213a0ff177f23a35f3b235386366ff132eb879f1 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 29 Nov 2021 14:34:40 -0800 Subject: [PATCH] Really fix flake8 error, refs #344, #345 --- sqlite_utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index a2c40e18e..0ff056c46 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -532,7 +532,7 @@ def supports_strict(self): ) self.conn.execute("drop table {}".format(table_name)) return True - except: + except Exception: return False @property