It's exist_ok=, not exists_ok= -- my bad.

This commit is contained in:
Daniel Quinn 2018-05-28 13:08:00 +01:00
parent 9c583fe9f3
commit 81a8cb45d7
2 changed files with 2 additions and 2 deletions

View File

@ -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(

View File

@ -81,7 +81,7 @@ class Command(BaseCommand):
raise CommandError(e)
for d in (self.ORIGINAL_DOCS, self.THUMB_DOCS):
os.makedirs(d, exists_ok=True)
os.makedirs(d, exist_ok=True)
logging.getLogger(__name__).info(
"Starting document consumer at {}{}".format(