From 7857474bc2d0036704110e78b42021d7957705fd Mon Sep 17 00:00:00 2001 From: Aniket Anikhindi Date: Fri, 3 Jul 2015 03:55:17 +0530 Subject: [PATCH] Fix description for "fuel2 --help" commands FUEL-CLI: Fixed issue wherein several help commands had same description. Also fixed typos in the messages in the said files. Change-Id: Ic2437106ad6d30c0562e3420b7eaf4936e5c093c DocImpact: Closes-Bug: #1465547 --- fuelclient/commands/environment.py | 2 +- fuelclient/commands/node.py | 2 +- fuelclient/commands/task.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fuelclient/commands/environment.py b/fuelclient/commands/environment.py index 6d7b97b..44aefc7 100644 --- a/fuelclient/commands/environment.py +++ b/fuelclient/commands/environment.py @@ -23,7 +23,7 @@ class EnvMixIn(object): class EnvList(EnvMixIn, base.BaseListCommand): - """Show list of all avaliable envrionments.""" + """Show list of all available environments.""" columns = ("id", "status", diff --git a/fuelclient/commands/node.py b/fuelclient/commands/node.py index aacc47b..a729344 100644 --- a/fuelclient/commands/node.py +++ b/fuelclient/commands/node.py @@ -21,7 +21,7 @@ class NodeMixIn(object): class NodeList(NodeMixIn, base.BaseListCommand): - """Show list of all avaliable nodes.""" + """Show list of all available nodes.""" columns = ('id', 'name', diff --git a/fuelclient/commands/task.py b/fuelclient/commands/task.py index 38ccff8..0f318f5 100644 --- a/fuelclient/commands/task.py +++ b/fuelclient/commands/task.py @@ -20,7 +20,7 @@ class TaskMixIn(object): class TaskList(TaskMixIn, base.BaseListCommand): - """Show list of all avaliable nodes.""" + """Show list of all available tasks.""" columns = ('id', 'status', 'name', @@ -30,7 +30,7 @@ class TaskList(TaskMixIn, base.BaseListCommand): class TaskShow(TaskMixIn, base.BaseShowCommand): - """Show info about node with given id.""" + """Show info about task with given id.""" columns = ('id', 'uuid', 'status',