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 26a471f5e0
commit d1b6e9329f
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(