Don't use fstring in log line.
This commit is contained in:
parent
ff1ec3896b
commit
21f7e7ca22
1 changed files with 1 additions and 1 deletions
|
@ -1138,7 +1138,7 @@ class PDBSQLMixin:
|
|||
if bindings is None:
|
||||
bindings = []
|
||||
cur = self.sql.cursor()
|
||||
self.log.loud(f'{query} {bindings}')
|
||||
self.log.loud('%s %s', query, bindings)
|
||||
cur.execute(query, bindings)
|
||||
return cur
|
||||
|
||||
|
|
Loading…
Reference in a new issue