diff --git a/torba/client/basedatabase.py b/torba/client/basedatabase.py index 145897ad7..28d0901c0 100644 --- a/torba/client/basedatabase.py +++ b/torba/client/basedatabase.py @@ -57,7 +57,7 @@ class AIOSQLite: result = fun(self.connection, *args, **kwargs) # type: ignore self.connection.commit() return result - except (Exception, OSError) as e: + except (Exception, OSError): # as e: #log.exception('Error running transaction:', exc_info=e) self.connection.rollback() raise