Moves the mktime call into the if block where it is used, preventing exceptions during rare cases

This commit is contained in:
Trenton H 2023-02-01 07:23:04 -08:00
parent f43c3e0dd6
commit 06e2500443

View File

@ -311,8 +311,8 @@ class Command(BaseCommand):
archive_target = None
# 3.4. write files to target folder
t = int(time.mktime(document.created.timetuple()))
if document.storage_type == Document.STORAGE_TYPE_GPG:
t = int(time.mktime(document.created.timetuple()))
original_target.parent.mkdir(parents=True, exist_ok=True)
with document.source_file as out_file: