mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 23:35:22 +01:00
It's exist_ok=, not exists_ok= -- my bad.
This commit is contained in:
parent
9c583fe9f3
commit
81a8cb45d7
2 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ class Consumer:
|
|||
self.consume = consume
|
||||
self.scratch = scratch
|
||||
|
||||
os.makedirs(self.scratch, exists_ok=True)
|
||||
os.makedirs(self.scratch, exist_ok=True)
|
||||
|
||||
if not self.consume:
|
||||
raise ConsumerError(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue