[FIX] database_cleanup: fix logging error introduced by #2098

pull/2987/head
Tom Blauwendraat 2024-02-02 20:07:08 +01:00 committed by Alessandro Uffreduzzi
parent 5fbdfe82cb
commit ba796405fd
No known key found for this signature in database
GPG Key ID: 6B534BB884A33D09
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class CleanupPurgeLineTable(models.TransientModel):
_sql_type = "TABLE"
elif line.table_type == "view":
_sql_type = "VIEW"
self.logger.info("Dropping %s %s", (_sql_type, line.name))
self.logger.info("Dropping %s %s", _sql_type, line.name)
self.env.cr.execute(
"DROP %s %s", (AsIs(_sql_type), IdentifierAdapter(line.name))
)