From f7f8fe4e7c4229562bed04faf21a1cf6e7d3a56b Mon Sep 17 00:00:00 2001 From: Yejia Xu Date: Wed, 7 May 2014 02:13:03 +0000 Subject: [PATCH] Fix help message for `ip floating delete` Previously, the help message incorrectly had the string "IP address to add to server". This should probably read "IP address to delete". Change-Id: If592b736448199f84c30e0cbc8110a0a76e2c140 Closes-Bug: #1316877 --- openstackclient/compute/v2/floatingip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstackclient/compute/v2/floatingip.py b/openstackclient/compute/v2/floatingip.py index 7ed847f5f4..3edc809ef2 100644 --- a/openstackclient/compute/v2/floatingip.py +++ b/openstackclient/compute/v2/floatingip.py @@ -89,7 +89,7 @@ class DeleteFloatingIP(command.Command): parser.add_argument( "ip_address", metavar="", - help="IP address to add to server", + help="IP address to delete", ) return parser