aboutsummaryrefslogtreecommitdiff
path: root/gn3/auth
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/auth')
-rw-r--r--gn3/auth/db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/auth/db.py b/gn3/auth/db.py
index 7c20bf7..2ba6619 100644
--- a/gn3/auth/db.py
+++ b/gn3/auth/db.py
@@ -48,7 +48,7 @@ class DbCursor(Protocol):
@contextlib.contextmanager
def connection(db_path: str, row_factory: Callable = sqlite3.Row) -> Iterator[DbConnection]:
"""Create the connection to the auth database."""
- logging.debug("SQLite3 DB Path: '%s'." % (db_path,))
+ logging.debug("SQLite3 DB Path: '%s'.", db_path)
conn = sqlite3.connect(db_path)
conn.row_factory = row_factory
conn.set_trace_callback(logging.debug)