From 631aa99d9299ce17c382cfd9b206a15c7ef2f186 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 28 Feb 2016 00:39:40 +0000 Subject: [PATCH] No need to pass verbosity around anymore --- src/documents/consumer.py | 3 +-- src/documents/management/commands/document_consumer.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 37b348495..f3d5b71cb 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -66,9 +66,8 @@ class Consumer(object): flags=re.IGNORECASE ) - def __init__(self, verbosity=1): + def __init__(self): - self.verbosity = verbosity self.logger = logging.getLogger(__name__) self.logging_group = None diff --git a/src/documents/management/commands/document_consumer.py b/src/documents/management/commands/document_consumer.py index ae72381e2..0eae5c80c 100644 --- a/src/documents/management/commands/document_consumer.py +++ b/src/documents/management/commands/document_consumer.py @@ -34,7 +34,7 @@ class Command(BaseCommand): self.verbosity = options["verbosity"] try: - self.file_consumer = Consumer(verbosity=self.verbosity) + self.file_consumer = Consumer() self.mail_fetcher = MailFetcher() except (ConsumerError, MailFetcherError) as e: raise CommandError(e)