From: Trenton Holmes Date: Sun, 8 May 2022 23:56:54 +0000 (-0700) Subject: Fixes missing f on an f-string X-Git-Tag: v1.8.0-beta.rc1~126^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F721%2Fhead;p=thirdparty%2Fpaperless-ngx.git Fixes missing f on an f-string --- diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 44fb1cb975..e9efbbdbde 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