From ab6e4861f3b113d3755773b3e881e3e70abcda99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Steinbei=C3=9Fer?= Date: Thu, 6 Mar 2025 20:48:26 +0100 Subject: [PATCH] Bug fix: typo --- src/documents/migrations/0012_auto_20160305_0040.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/migrations/0012_auto_20160305_0040.py b/src/documents/migrations/0012_auto_20160305_0040.py index d7b2ab52b..bcd67f1be 100644 --- a/src/documents/migrations/0012_auto_20160305_0040.py +++ b/src/documents/migrations/0012_auto_20160305_0040.py @@ -61,7 +61,7 @@ def move_documents_and_create_thumbnails(apps, schema_editor): ), ) - Path(settings.SCRATCH_DIR).mkdir(parents=True, exists_ok=True) + Path(settings.SCRATCH_DIR).mkdir(parents=True, exist_ok=True) for f in sorted(documents): if not f.endswith("gpg"):