From 1dec53924f0c0548acb7ffbdc4a8419ea759e4aa Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Mon, 19 Aug 2024 11:52:17 +1000 Subject: [PATCH] fix typo --- sheetsync/sheetsync/streamlog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sheetsync/sheetsync/streamlog.py b/sheetsync/sheetsync/streamlog.py index 6eb9aad..42a7877 100644 --- a/sheetsync/sheetsync/streamlog.py +++ b/sheetsync/sheetsync/streamlog.py @@ -136,7 +136,7 @@ class StreamLogEventsMiddleware(Middleware): elif parent in entries_by_id: entry["depth"] = entries_by_id[parent]["depth"] + 1 else: - logging.warning("Entry {entry['id']} has unknown or out-of-order parent {parent}") + logging.warning(f"Entry {entry['id']} has unknown or out-of-order parent {parent}") entry["depth"] = 0 row = self.parse_row(entry)