summaryrefslogtreecommitdiff
path: root/designateclient
diff options
context:
space:
mode:
authorBen Nemec <bnemec@redhat.com>2018-06-29 21:11:20 +0000
committerBen Nemec <bnemec@redhat.com>2018-06-29 21:12:32 +0000
commit9d34339c063617e0f8d55013c4e27da4067beb0e (patch)
tree1c13a70caa1ca0eeaa7d1472d75edba2ea20a71c /designateclient
parent99ca354c48ecc878474cb143cff731c439046762 (diff)
downloadpython-designateclient-9d34339c063617e0f8d55013c4e27da4067beb0e.tar.gz
Fix copy-pasta in quota command descriptions
These seem to have been copied from the blacklist command and don't make sense for quotas. They also appear in the openstackclient help output which is confusing. Change-Id: Ib5d2c0fd7da8cb18e230d84c5f344217ad853da7
Diffstat (limited to 'designateclient')
-rw-r--r--designateclient/v2/cli/quotas.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/designateclient/v2/cli/quotas.py b/designateclient/v2/cli/quotas.py
index a9e1e32..2244ca7 100644
--- a/designateclient/v2/cli/quotas.py
+++ b/designateclient/v2/cli/quotas.py
@@ -64,7 +64,7 @@ class ListQuotasCommand(show.ShowOne):
class SetQuotasCommand(show.ShowOne):
- """Set blacklist properties"""
+ """Set quotas"""
def _build_options_list(self):
return itertools.chain(DNS_QUOTAS.items())
@@ -108,7 +108,7 @@ class SetQuotasCommand(show.ShowOne):
class ResetQuotasCommand(command.Command):
- """Delete blacklist"""
+ """Reset quotas"""
def get_parser(self, prog_name):
parser = super(ResetQuotasCommand, self).get_parser(prog_name)