Comment 4 for bug 1519511

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to python-openstackclient (master)

Reviewed: https://review.openstack.org/261089
Committed: https://git.openstack.org/cgit/openstack/python-openstackclient/commit/?id=0e38ef84844ba406cb18fe3893dc6bebd205ef51
Submitter: Jenkins
Branch: master

commit 0e38ef84844ba406cb18fe3893dc6bebd205ef51
Author: Richard Theis <email address hidden>
Date: Wed Dec 23 13:44:22 2015 -0600

    Improve output for "os security group show"

    Improve the security group rules output when running the
    "os security group show" command. Each security group rule
    is now displayed on a separate line.

    Current output example:
    $ openstack security group show default
    +-------------+------------------------- ... ---+
    | Field | Value ... |
    +-------------+------------------------- ... ---+
    | description | Default security group ... |
    | id | 048a5fc3-3be1-407d-ae47-9... |
    | name | default ... |
    | project_id | 3b96bb2020c1459da76963f9e... |
    | rules | [u"id='5d812367-9829-4340...t"] |
    +-------------+------------------------- ... ---+

    New output example:
    +-------------+------------------------- ... ---+
    | Field | Value ... |
    +-------------+------------------------- ... ---+
    | description | Default security group ... |
    | id | 048a5fc3-3be1-407d-ae47-9... |
    | name | default ... |
    | project_id | 3b96bb2020c1459da76963f9e... |
    | rules | id='5d812367-9829-4340-95...lt' |
    | | id='ee451d1c-ade3-4975-8e...lt' |
    +-------------+------------------------- ... ---+

    Change-Id: I1386075310896c58a2b776e2bbec3603bd00eff1
    Partial-Bug: #1519511
    Related-To: blueprint neutron-client