]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix split_manifest default value
authorMatthieu Helleboid <mhelleboid@hotmail.com>
Fri, 20 Jan 2023 18:11:18 +0000 (19:11 +0100)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Tue, 24 Jan 2023 19:06:49 +0000 (11:06 -0800)
src/documents/management/commands/document_exporter.py

index a7974a7fcc26c8d69992a2772b444c69d1924fec..219217fd7802634f52f5c84f5f9f5a40684e9203 100644 (file)
@@ -133,7 +133,7 @@ class Command(BaseCommand):
     def __init__(self, *args, **kwargs):
         BaseCommand.__init__(self, *args, **kwargs)
         self.target: Path = None
-        self.split_manifest = None
+        self.split_manifest = False
         self.files_in_export_dir: Set[Path] = set()
         self.exported_files: List[Path] = []
         self.compare_checksums = False