fixup: remove helper fn 'make_dirs'

This commit is contained in:
Erik Arvstedt 2018-05-21 00:35:34 +02:00
parent 3e8038577d
commit bccac5017c
2 changed files with 4 additions and 11 deletions

View File

@ -48,7 +48,7 @@ class Consumer:
self.consume = consume
self.scratch = scratch
make_dirs(self.scratch)
os.makedirs(self.scratch, exists_ok=True)
if not self.consume:
raise ConsumerError(
@ -247,11 +247,3 @@ class Consumer:
with open(doc, "rb") as f:
checksum = hashlib.md5(f.read()).hexdigest()
return Document.objects.filter(checksum=checksum).exists()
def make_dirs(*dirs):
for dir in dirs:
try:
os.makedirs(dir)
except FileExistsError:
pass

View File

@ -7,7 +7,7 @@ import time
from django.conf import settings
from django.core.management.base import BaseCommand, CommandError
from ...consumer import Consumer, ConsumerError, make_dirs
from ...consumer import Consumer, ConsumerError
from ...mail import MailFetcher, MailFetcherError
try:
@ -80,7 +80,8 @@ class Command(BaseCommand):
except (ConsumerError, MailFetcherError) as e:
raise CommandError(e)
make_dirs(self.ORIGINAL_DOCS, self.THUMB_DOCS)
for d in (self.ORIGINAL_DOCS, self.THUMB_DOCS):
os.makedirs(d, exists_ok=True)
logging.getLogger(__name__).info(
"Starting document consumer at {}{}".format(