Fixes missing f on an f-string

This commit is contained in:
Trenton Holmes 2022-05-08 16:56:54 -07:00
parent 8f1f0f5475
commit 1817d014ef

View 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