From ea1440c13aa09d418c911bb08c92bc9efd6dc8fa Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 25 Feb 2011 14:13:16 +0100 Subject: [PATCH] gnt-* list-fields: Show field description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: RenΓ© Nussbaumer <rn@google.com> --- lib/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli.py b/lib/cli.py index cc194064a..ca3a7b6e2 100644 --- a/lib/cli.py +++ b/lib/cli.py @@ -2608,10 +2608,10 @@ def GenericListFields(resource, fields, separator, header, cl=None): columns = [ TableColumn("Name", str, False), TableColumn("Title", str, False), - # TODO: Add field description to master daemon + TableColumn("Description", str, False), ] - rows = [[fdef.name, fdef.title] for fdef in response.fields] + rows = [[fdef.name, fdef.title, fdef.doc] for fdef in response.fields] for line in FormatTable(rows, columns, header, separator): ToStdout(line) -- GitLab