forked from extern/django-helpdesk
AttributeError: 'Command' object has no attribute 'option_list'
There is a bug in the command in which option_list doesn't exist and thus, cannot be added to.
This commit is contained in:
parent
5f59e9a5a7
commit
d3c4d14a40
@ -32,7 +32,7 @@ class Command(BaseCommand):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
BaseCommand.__init__(self)
|
BaseCommand.__init__(self)
|
||||||
|
|
||||||
self.option_list += (
|
self.option_list = (
|
||||||
make_option(
|
make_option(
|
||||||
'--queues',
|
'--queues',
|
||||||
help='Queues to include (default: all). Use queue slugs'),
|
help='Queues to include (default: all). Use queue slugs'),
|
||||||
|
Loading…
Reference in New Issue
Block a user