diff options
author | Zuul <zuul@review.opendev.org> | 2022-06-10 01:47:43 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2022-06-10 01:47:43 +0000 |
commit | 7a8d1560868643d24b3431db0a24058c23ceab35 (patch) | |
tree | 7259318b6d40f547c40972cd2bd6277c50519bfe | |
parent | 680789bfd8aee5a3bba8811cf53f3dc2dbd2bc12 (diff) | |
parent | 5626ce07034781a33968ad01a45f2d6ac4947a9d (diff) | |
download | python-designateclient-stable/wallaby.tar.gz |
Merge "Clarify that name or ID can be used on TLDs" into stable/wallabywallaby-em4.2.1stable/wallaby
-rw-r--r-- | designateclient/v2/cli/tlds.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/designateclient/v2/cli/tlds.py b/designateclient/v2/cli/tlds.py index c41a477..b1b30bd 100644 --- a/designateclient/v2/cli/tlds.py +++ b/designateclient/v2/cli/tlds.py @@ -64,7 +64,7 @@ class ShowTLDCommand(command.ShowOne): def get_parser(self, prog_name): parser = super(ShowTLDCommand, self).get_parser(prog_name) - parser.add_argument('id', help="TLD ID") + parser.add_argument('id', help="TLD name or ID") common.add_all_common_options(parser) @@ -105,7 +105,7 @@ class SetTLDCommand(command.ShowOne): def get_parser(self, prog_name): parser = super(SetTLDCommand, self).get_parser(prog_name) - parser.add_argument('id', help="TLD ID") + parser.add_argument('id', help="TLD name or ID") parser.add_argument('--name', help="TLD Name") description_group = parser.add_mutually_exclusive_group() description_group.add_argument('--description', help="Description") @@ -140,7 +140,7 @@ class DeleteTLDCommand(command.Command): def get_parser(self, prog_name): parser = super(DeleteTLDCommand, self).get_parser(prog_name) - parser.add_argument('id', help="TLD ID") + parser.add_argument('id', help="TLD name or ID") common.add_all_common_options(parser) |