--column actually filters rows for openstack token issue
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
cliff |
New
|
Undecided
|
Unassigned | ||
python-openstackclient |
Invalid
|
Undecided
|
Unassigned |
Bug Description
The --column actually acts on rows rather than columns for openstack token issue:
# openstack token issue -c project_id
+------
| Field | Value |
+------
| project_id | f866b93adc82473
+------
This is confusing and inconsistent from other commands, e.g. openstack project list:
# openstack project list -c ID
+------
| ID |
+------
| 35d7501ec6794eb
| c743108159c7483
| f866b93adc82473
+------
The table returned for openstack token issue should be structured as columns rather than as rows, like other subcommands.
So u mean to say project ID should be on a column and Field Value rows should not be present?