diff --git a/orchestra/management/commands/restartservices.py b/orchestra/management/commands/restartservices.py index 63754897..ea613566 100644 --- a/orchestra/management/commands/restartservices.py +++ b/orchestra/management/commands/restartservices.py @@ -7,5 +7,4 @@ from orchestra.management.commands.startservices import ManageServiceCommand class Command(ManageServiceCommand): services = settings.ORCHESTRA_RESTART_SERVICES action = 'restart' - option_list = BaseCommand.option_list help = 'Restart all related services. Usefull for reload configuration and files.' diff --git a/orchestra/management/commands/stopservices.py b/orchestra/management/commands/stopservices.py index ac0e6583..d0868b7a 100644 --- a/orchestra/management/commands/stopservices.py +++ b/orchestra/management/commands/stopservices.py @@ -7,5 +7,4 @@ from orchestra.management.commands.startservices import ManageServiceCommand class Command(ManageServiceCommand): services = settings.ORCHESTRA_STOP_SERVICES action = 'stop' - option_list = BaseCommand.option_list help = 'Stop all related services. Usefull for reload configuration and files.'