]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bug fix: typo in migration file (#9321)
authorSebastian Steinbeißer <33968289+gothicVI@users.noreply.github.com>
Fri, 7 Mar 2025 03:32:54 +0000 (04:32 +0100)
committerGitHub <noreply@github.com>
Fri, 7 Mar 2025 03:32:54 +0000 (19:32 -0800)
src/documents/migrations/0012_auto_20160305_0040.py

index d7b2ab52b8fae63f628bcba809cc2946d80e7fb5..bcd67f1bee7392fc6f6670938c248f12b1eff160 100644 (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"):