summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbhishek Chanda <abhishek@cloudscaling.com>2014-08-14 12:44:27 -0700
committerAbhishek Chanda <abhishek@cloudscaling.com>2014-08-14 12:46:00 -0700
commit74968bd391f6b76356d5d326b77c9ad3ecd14ee7 (patch)
tree6fd8f86ccf2993c9ad3174a583f464ebe7635111
parenteca251c622e4c357ad070f4ed421a6875d1e88c9 (diff)
downloadpython-neutronclient-74968bd391f6b76356d5d326b77c9ad3ecd14ee7.tar.gz
Fix typo in cli help
The help message for neutron floatingip-disassociate should say the argument is the ID of the floating IP to disassociate Change-Id: I4564d546ca269ab05199a51ffd11678237a4d56f
-rw-r--r--neutronclient/neutron/v2_0/floatingip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/neutronclient/neutron/v2_0/floatingip.py b/neutronclient/neutron/v2_0/floatingip.py
index c709607..e995bca 100644
--- a/neutronclient/neutron/v2_0/floatingip.py
+++ b/neutronclient/neutron/v2_0/floatingip.py
@@ -133,7 +133,7 @@ class DisassociateFloatingIP(neutronV20.NeutronCommand):
parser = super(DisassociateFloatingIP, self).get_parser(prog_name)
parser.add_argument(
'floatingip_id', metavar='FLOATINGIP_ID',
- help=_('ID of the floating IP to associate.'))
+ help=_('ID of the floating IP to disassociate.'))
return parser
def run(self, parsed_args):