diff options
| author | xiexs <xiexs@cn.fujitsu.com> | 2015-11-23 08:19:00 -0500 |
|---|---|---|
| committer | xiexs <xiexs@cn.fujitsu.com> | 2015-11-29 20:37:40 -0500 |
| commit | 342fd158e9a0744ff75e9234c996b6b5ef1907ff (patch) | |
| tree | 6f89f2db40c406c3b32e6975d4a5202c7fecd7ca /openstackclient/image/v2/image.py | |
| parent | 27869c0f3ffca5bd15700a198dd9e5929ea4d77d (diff) | |
| download | python-openstackclient-342fd158e9a0744ff75e9234c996b6b5ef1907ff.tar.gz | |
Add status column for "openstack image list"
Actually, the status column is useful for the user.
So, it`s better to output this info by default (or, user had
to specify the extra option, i.e. --long).
Change-Id: Id2a9f86f0de5310f8f5ff9a46bf1b7411094b519
Closes-Bug: #1519181
Diffstat (limited to 'openstackclient/image/v2/image.py')
| -rw-r--r-- | openstackclient/image/v2/image.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/image/v2/image.py b/openstackclient/image/v2/image.py index 5552f033..c0fb5b58 100644 --- a/openstackclient/image/v2/image.py +++ b/openstackclient/image/v2/image.py @@ -417,7 +417,7 @@ class ListImage(lister.Lister): 'Tags', ) else: - columns = ("ID", "Name") + columns = ("ID", "Name", "Status") column_headers = columns # List of image data received |
