From 20763e7c26059fb1ba13a5e2665c0ea4fe07060d Mon Sep 17 00:00:00 2001 From: Matthieu Helleboid Date: Fri, 20 Jan 2023 19:11:18 +0100 Subject: [PATCH] Fix split_manifest default value --- src/documents/management/commands/document_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/management/commands/document_exporter.py b/src/documents/management/commands/document_exporter.py index a7974a7fc..219217fd7 100644 --- a/src/documents/management/commands/document_exporter.py +++ b/src/documents/management/commands/document_exporter.py @@ -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