From adc217e6fd562a949811270709eb9ec2b8f4cbe8 Mon Sep 17 00:00:00 2001 From: Jonas Winkler Date: Thu, 12 Nov 2020 10:42:18 +0100 Subject: [PATCH] This is how the original filenames were generated. Keep it this way for compatibility. --- src/documents/file_handling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py index cac317d4c..22d5a052d 100644 --- a/src/documents/file_handling.py +++ b/src/documents/file_handling.py @@ -72,7 +72,7 @@ def generate_filename(document): path = settings.PAPERLESS_FILENAME_FORMAT.format( correspondent=slugify(document.correspondent), title=slugify(document.title), - created=document.created.date(), + created=slugify(document.created), added=slugify(document.added), tags=tags, )