service: Include brief description for help command itself
patch 2d85c1f72cbe23f45c514c3100ebe57bee0d576b
Author: E. Bosch <presidev@AT@gmail.com>
Date: Tue Mar 8 21:28:02 CET 2022
* service: Include brief description for help command itself
hunk ./service.py 37
- if not help_command or help_command == 'help':
+ if help == HELP.brief:
+ help_text = (' help This help',)
+ elif not help_command or help_command == 'help':
hunk ./service.py 48
- if handler == self.handle_command_help: break