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
This commit is contained in:
Yejia Xu
2014-05-07 02:13:03 +00:00
committed by Steve Martinelli
parent 834867b8bf
commit f7f8fe4e7c

View File

@@ -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