]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fixes missing f on an f-string 721/head
authorTrenton Holmes <holmes.trenton@gmail.com>
Sun, 8 May 2022 23:56:54 +0000 (16:56 -0700)
committerTrenton Holmes <holmes.trenton@gmail.com>
Sun, 8 May 2022 23:57:35 +0000 (16:57 -0700)
src/documents/consumer.py

index 44fb1cb9757caeacfe19cbce10d012b6194d65e2..e9efbbdbde72167cb61df01da81784dcf8d84031 100644 (file)
@@ -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