From b6b4601a92169281cc192163663b7107704e9e16 Mon Sep 17 00:00:00 2001 From: "Yuanbin.Chen" Date: Mon, 12 Feb 2018 12:03:36 +0800 Subject: [PATCH] Change event and node module describe error. Change-Id: I52c233690cf3408108dc4decd6eff66eb7fc3f17 Signed-off-by: Yuanbin.Chen --- senlinclient/v1/cluster.py | 2 +- senlinclient/v1/event.py | 2 +- senlinclient/v1/node.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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")