From bfc34ba8de30a37c703cecb7781eea220bcfa7c9 Mon Sep 17 00:00:00 2001 From: Idan Hefetz Date: Sun, 21 Jan 2018 09:36:38 +0000 Subject: [PATCH] add template type to template list cli Change-Id: I170238c7c6bf9a82e6333cefbab1863b9db02f6b --- vitrageclient/v1/cli/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitrageclient/v1/cli/template.py b/vitrageclient/v1/cli/template.py index fea5f52..a3f0e6f 100644 --- a/vitrageclient/v1/cli/template.py +++ b/vitrageclient/v1/cli/template.py @@ -51,7 +51,6 @@ class TemplateList(lister.Lister): def take_action(self, parsed_args): templates = utils.get_client(self).template.list() - # TODO(ikinory): add type to the table. return utils.list2cols_with_rename( ( ('UUID', 'uuid'), @@ -59,6 +58,7 @@ class TemplateList(lister.Lister): ('Status', 'status'), ('Status details', 'status details'), ('Date', 'date'), + ('Type', 'type'), ), templates)