From 75468cc02fd7509bcc6dd874a82db23e3c4f31ec Mon Sep 17 00:00:00 2001 From: guiyanxing Date: Mon, 15 Aug 2016 15:26:41 +0800 Subject: Correct DisassociatingHealthmonitor help messages Change-Id: Ie6f0419046f25c078f49c5343fbb4e10232a0b88 --- neutronclient/neutron/v2_0/lb/healthmonitor.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'neutronclient/neutron') 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): -- cgit v1.2.1