Fix command line arg for Django 1.7 and make Python 2 and 3 compatible test

This commit is contained in:
Garret Wassermann
2016-10-20 02:21:43 -04:00
parent 9606201200
commit 6418194b85
2 changed files with 5 additions and 3 deletions

View File

@ -55,9 +55,10 @@ class Command(BaseCommand):
if VERSION < (1, 8):
self.option_list += (
make_option(
'--quiet', '-q',
'--quiet',
default=False,
action='store_true',
dest='quiet',
help='Hide details about each queue/message as they are processed'),
)