mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-14 01:58:28 +02:00
Merge 0.2.14 bugfixes
This commit is contained in:
@ -27,7 +27,7 @@ class Command(BaseCommand):
|
||||
def __init__(self):
|
||||
BaseCommand.__init__(self)
|
||||
|
||||
self.option_list += (
|
||||
self.option_list = (
|
||||
make_option(
|
||||
'--queues',
|
||||
help='Queues to include (default: all). Use queue slugs'),
|
||||
@ -43,9 +43,9 @@ class Command(BaseCommand):
|
||||
queue_slugs = None
|
||||
queues = []
|
||||
|
||||
if options['verboseescalation']:
|
||||
if 'verboseescalation' in options:
|
||||
verbose = True
|
||||
if options['queues']:
|
||||
if 'queues' in options:
|
||||
queue_slugs = options['queues']
|
||||
|
||||
if queue_slugs is not None:
|
||||
|
Reference in New Issue
Block a user