No need to pass verbosity around anymore

This commit is contained in:
Daniel Quinn 2016-02-28 00:39:40 +00:00
parent a4d89ed124
commit 631aa99d92
2 changed files with 2 additions and 3 deletions

View File

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

View File

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