diff options
Diffstat (limited to 'tools/cru-py/cru/service/_base.py')
-rw-r--r-- | tools/cru-py/cru/service/_base.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/cru-py/cru/service/_base.py b/tools/cru-py/cru/service/_base.py index aecd7c9..90e1f85 100644 --- a/tools/cru-py/cru/service/_base.py +++ b/tools/cru-py/cru/service/_base.py @@ -219,7 +219,9 @@ class PathCommandProvider(AppCommandFeatureProvider): subparsers = arg_parser.add_subparsers( dest="path_command", required=True, metavar="PATH_COMMAND" ) - _list_parser = subparsers.add_parser("list", help="list all paths.") + _list_parser = subparsers.add_parser( + "list", help="list special paths used by app" + ) def run_command(self, args: Namespace) -> None: if args.path_command == "list": |