diff --git a/senlinclient/v1/cluster.py b/senlinclient/v1/cluster.py index 5015eb6c..875bdda7 100644 --- a/senlinclient/v1/cluster.py +++ b/senlinclient/v1/cluster.py @@ -30,7 +30,7 @@ from senlinclient.common import utils as senlin_utils class ListCluster(command.Lister): - """List the user's clusters.""" + """List clusters.""" log = logging.getLogger(__name__ + ".ListCluster") diff --git a/senlinclient/v1/event.py b/senlinclient/v1/event.py index e0fbbcf9..15c3d364 100644 --- a/senlinclient/v1/event.py +++ b/senlinclient/v1/event.py @@ -111,7 +111,7 @@ class ListEvent(command.Lister): class ShowEvent(command.ShowOne): - """Describe the event.""" + """Show the event details.""" log = logging.getLogger(__name__ + ".ShowEvent") diff --git a/senlinclient/v1/node.py b/senlinclient/v1/node.py index 2de32a61..0ab329e5 100644 --- a/senlinclient/v1/node.py +++ b/senlinclient/v1/node.py @@ -27,7 +27,7 @@ from senlinclient.common import utils as senlin_utils class ListNode(command.Lister): - """Show list of nodes.""" + """List nodes.""" log = logging.getLogger(__name__ + ".ListNode")