actions: Make subparsers mandatory for service action too

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2017-04-10 11:22:13 +05:30
parent 634afef1c9
commit 6a91945219
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -51,6 +51,7 @@ def parse_arguments():
subparsers.add_parser('list', help='List of running system services')
subparsers.required = True
return parser.parse_args()