From 1817d014ef4c3aedb18dd17f13ab83c6e3bb4f38 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Sun, 8 May 2022 16:56:54 -0700 Subject: [PATCH] Fixes missing f on an f-string --- src/documents/consumer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 44fb1cb97..e9efbbdbd 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -405,7 +405,7 @@ class Consumer(LoggingMixin): create_date = timezone.make_aware( datetime.datetime.fromtimestamp(stats.st_mtime), ) - self.log("debug", "Creation date from st_mtime: {create_date}") + self.log("debug", f"Creation date from st_mtime: {create_date}") storage_type = Document.STORAGE_TYPE_UNENCRYPTED