Skip to content

Commit

Permalink
AttributeError: 'Command' object has no attribute 'option_list'
Browse files Browse the repository at this point in the history
There is a bug in the command in which option_list doesn't exist and thus, cannot be added to.
  • Loading branch information
TurnrDev authored Feb 3, 2019
1 parent 5f59e9a commit d3c4d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk/management/commands/escalate_tickets.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,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'),
Expand Down

0 comments on commit d3c4d14

Please sign in to comment.