diff options
| author | Yejia Xu <yejia@unitedstack.com> | 2014-05-07 02:13:03 +0000 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2014-05-07 05:13:41 +0000 |
| commit | f7f8fe4e7c4229562bed04faf21a1cf6e7d3a56b (patch) | |
| tree | a8db6ca63da73acc1eaa6d53d854e5cdbcfeba13 /openstackclient/compute | |
| parent | 834867b8bfaab1dcbad5f1e88e10f8a10c48f626 (diff) | |
| download | python-openstackclient-f7f8fe4e7c4229562bed04faf21a1cf6e7d3a56b.tar.gz | |
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
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/v2/floatingip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/compute/v2/floatingip.py b/openstackclient/compute/v2/floatingip.py index 7ed847f5..3edc809e 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="<ip-address>", - help="IP address to add to server", + help="IP address to delete", ) return parser |
