This commit is contained in:
Jonas Winkler 2020-11-18 11:32:48 +01:00
parent d7a0848a91
commit 1b0233418b

View File

@ -32,6 +32,9 @@ class UploadForm(forms.Form):
t = int(mktime(datetime.now().timetuple()))
os.makedirs(settings.SCRATCH_DIR, exist_ok=True)
# TODO: dont just append pdf. This is here for taht weird regex check at the start of the consumer.
with tempfile.NamedTemporaryFile(prefix="paperless-upload-", suffix=".pdf", dir=settings.SCRATCH_DIR, delete=False) as f:
f.write(document)