summaryrefslogtreecommitdiff
path: root/neutronclient/neutron
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-09-07 23:57:30 +0000
committerGerrit Code Review <review@openstack.org>2016-09-07 23:57:30 +0000
commit513d56b0c4f83f7619a2c2e0e30dc0035fa5bc19 (patch)
tree9178cc8b6f2cd1bbcf04ebbba91ecd1878ea06d5 /neutronclient/neutron
parent49c7120a459a3a7200d17bd4d551429d47ef60b5 (diff)
parent75468cc02fd7509bcc6dd874a82db23e3c4f31ec (diff)
downloadpython-neutronclient-513d56b0c4f83f7619a2c2e0e30dc0035fa5bc19.tar.gz
Merge "Correct DisassociatingHealthmonitor help messages"
Diffstat (limited to 'neutronclient/neutron')
-rw-r--r--neutronclient/neutron/v2_0/lb/healthmonitor.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/neutronclient/neutron/v2_0/lb/healthmonitor.py b/neutronclient/neutron/v2_0/lb/healthmonitor.py
index c2bd70c..600a7f2 100644
--- a/neutronclient/neutron/v2_0/lb/healthmonitor.py
+++ b/neutronclient/neutron/v2_0/lb/healthmonitor.py
@@ -145,10 +145,11 @@ class DisassociateHealthMonitor(neutronV20.NeutronCommand):
parser = super(DisassociateHealthMonitor, self).get_parser(prog_name)
parser.add_argument(
'health_monitor_id', metavar='HEALTH_MONITOR_ID',
- help=_('Health monitor to associate.'))
+ help=_('Health monitor to disassociate.'))
parser.add_argument(
'pool_id', metavar='POOL',
- help=_('ID of the pool to be associated with the health monitor.'))
+ help=_('ID of the pool to be disassociated with the health '
+ 'monitor.'))
return parser
def take_action(self, parsed_args):