From ce0a28e3742ac51b063a75275dad25af402df663 Mon Sep 17 00:00:00 2001 From: tengqm Date: Mon, 26 Jan 2015 22:49:25 +0800 Subject: [PATCH] Fixed cluster list column name error --- senlinclient/v1/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/senlinclient/v1/shell.py b/senlinclient/v1/shell.py index cb076740..5a10f216 100644 --- a/senlinclient/v1/shell.py +++ b/senlinclient/v1/shell.py @@ -235,7 +235,7 @@ def do_policy_type_template(sc, args): 'ID.')) def do_cluster_list(sc, args=None): '''List the user's clusters.''' - fields = ['id', 'cluster_name', 'status', 'created_time'] + fields = ['id', 'name', 'status', 'created_time'] queries = { 'limit': args.limit, 'marker': args.marker,