summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/floatingip.py
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2014-06-20 10:06:05 -0500
committerDean Troyer <dtroyer@gmail.com>2014-07-24 11:22:29 -0500
commit5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1 (patch)
treecfe627e999ec7c24b053cb55896b0d47988a0a6d /openstackclient/compute/v2/floatingip.py
parentea938e8ddfa0f5f8832e09d61537f1e81e3121e9 (diff)
downloadpython-openstackclient-5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1.tar.gz
Normalize more help strings
Change-Id: I2b21bc904e35c1cc50da369d148e607fe3e8cf90
Diffstat (limited to 'openstackclient/compute/v2/floatingip.py')
-rw-r--r--openstackclient/compute/v2/floatingip.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/openstackclient/compute/v2/floatingip.py b/openstackclient/compute/v2/floatingip.py
index 72b19c6c..658f0d5a 100644
--- a/openstackclient/compute/v2/floatingip.py
+++ b/openstackclient/compute/v2/floatingip.py
@@ -26,7 +26,7 @@ from openstackclient.common import utils
class AddFloatingIP(command.Command):
- """Add floating-ip command"""
+ """Add floating-ip to server"""
log = logging.getLogger(__name__ + ".AddFloatingIP")
@@ -40,7 +40,7 @@ class AddFloatingIP(command.Command):
parser.add_argument(
"server",
metavar="<server>",
- help="Name of the server to receive the IP address",
+ help="Server to receive the IP address (name or ID)",
)
return parser
@@ -56,7 +56,7 @@ class AddFloatingIP(command.Command):
class CreateFloatingIP(show.ShowOne):
- """Create floating-ip command"""
+ """Create new floating-ip"""
log = logging.getLogger(__name__ + '.CreateFloatingIP')
@@ -80,7 +80,7 @@ class CreateFloatingIP(show.ShowOne):
class DeleteFloatingIP(command.Command):
- """Delete floating-ip command"""
+ """Delete a floating-ip"""
log = logging.getLogger(__name__ + '.DeleteFloatingIP')
@@ -107,7 +107,7 @@ class DeleteFloatingIP(command.Command):
class ListFloatingIP(lister.Lister):
- """List floating-ip command"""
+ """List floating-ips"""
log = logging.getLogger(__name__ + '.ListFloatingIP')
@@ -127,7 +127,7 @@ class ListFloatingIP(lister.Lister):
class RemoveFloatingIP(command.Command):
- """Remove floating-ip command"""
+ """Remove floating-ip from server"""
log = logging.getLogger(__name__ + ".RemoveFloatingIP")
@@ -141,7 +141,7 @@ class RemoveFloatingIP(command.Command):
parser.add_argument(
"server",
metavar="<server>",
- help="Name of the server to remove the IP address from",
+ help="Server to remove the IP address from (name or ID)",
)
return parser