From 5754dafe5a4b2259c5ddc6052aeb0b540d274c3b Mon Sep 17 00:00:00 2001 From: tengqm Date: Tue, 29 Dec 2015 23:25:07 -0500 Subject: [PATCH] Fix shell message for action list Fix some typos in shell messages. Change-Id: I8b435315a138d8c11335ba74978bac6eb50d2838 --- senlinclient/v1/shell.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/senlinclient/v1/shell.py b/senlinclient/v1/shell.py index 39c1faa5..272315b0 100644 --- a/senlinclient/v1/shell.py +++ b/senlinclient/v1/shell.py @@ -1294,11 +1294,11 @@ def _fmt_depended_by(obj): @utils.arg('-s', '--sort-dir', metavar='', help=_('Direction for sorting, where DIR can be "asc" or "desc".')) @utils.arg('-l', '--limit', metavar='', - help=_('Limit the number of nodes returned.')) + help=_('Limit the number of actions returned.')) @utils.arg('-m', '--marker', metavar='', - help=_('Only return nodes that appear after the given node ID.')) + help=_('Only return actions that appear after the given node ID.')) @utils.arg('-D', '--show-deleted', default=False, action="store_true", - help=_('Include soft-deleted nodes if any.')) + help=_('Include soft-deleted actions if any.')) @utils.arg('-F', '--full-id', default=False, action="store_true", help=_('Print full IDs in list.')) def do_action_list(sc, args):