Don't use fstring in log line.

master
voussoir 2021-04-02 18:31:52 -07:00
parent ff1ec3896b
commit 21f7e7ca22
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 1 additions and 1 deletions

View File

@ -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