diff options
author | crupest <crupest@outlook.com> | 2024-11-11 01:12:29 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-01-20 15:06:20 +0800 |
commit | 12e1272508ba0b5909069319007d677c1c76e355 (patch) | |
tree | 969e16dea577b4cbc427791de60083a6c962c1c6 /tools/cru-py/cru/service/_base.py | |
parent | fc6cd0846eae8c7f7a50e18b654b1f14f7b7840f (diff) | |
download | crupest-12e1272508ba0b5909069319007d677c1c76e355.tar.gz crupest-12e1272508ba0b5909069319007d677c1c76e355.tar.bz2 crupest-12e1272508ba0b5909069319007d677c1c76e355.zip |
HALF WORK: 2024.1.20
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": |