diff options
author | John L. Villalovos <john@sodarock.com> | 2022-06-05 14:20:10 -0700 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-06-05 14:20:10 -0700 |
commit | 62e64a66dab4b3704d80d19a5dbc68b025b18e3c (patch) | |
tree | 772ea9a6e7a84e1e65ad527fc8105084bcf12288 | |
parent | 40c9b4f299d3c101bda7fabc89a42ff0f1f0ddc2 (diff) | |
download | gitlab-62e64a66dab4b3704d80d19a5dbc68b025b18e3c.tar.gz |
chore(cli): rename "object" to "GitLab resource"
Make the parser name more user friendly by renaming from generic
"object" to "GitLab resource"
-rw-r--r-- | gitlab/v4/cli.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py index dac6ede..2b0d4ce 100644 --- a/gitlab/v4/cli.py +++ b/gitlab/v4/cli.py @@ -337,7 +337,9 @@ def _populate_sub_parser_by_class( def extend_parser(parser: argparse.ArgumentParser) -> argparse.ArgumentParser: subparsers = parser.add_subparsers( - title="object", dest="gitlab_resource", help="Object to manipulate." + title="resource", + dest="gitlab_resource", + help="The GitLab resource to manipulate.", ) subparsers.required = True |