From 21f7e7ca22ba040751f23c77feb5e51b27c189dd Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 2 Apr 2021 18:31:52 -0700 Subject: [PATCH] Don't use fstring in log line. --- etiquette/photodb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etiquette/photodb.py b/etiquette/photodb.py index 637f87f..3e7c82b 100644 --- a/etiquette/photodb.py +++ b/etiquette/photodb.py @@ -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