Bug fix: typo in migration file (#9321)

This commit is contained in:
Sebastian Steinbeißer
2025-03-07 04:32:54 +01:00
committed by GitHub
parent cf48f47a8c
commit 485dad01b7

View File

@@ -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"):