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(