diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-12-28 13:53:58 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-12-28 13:54:02 +0000 |
| commit | 9f2ed6b03a1fdc1036aa8f8e3ea7b673a10da328 (patch) | |
| tree | 63f8ec13f0cb9bd68152148fe26acf25cff604ed /openstackclient/compute | |
| parent | f5604366f0c75019dad750dfb8098d4fac960a7e (diff) | |
| parent | 0e38ef84844ba406cb18fe3893dc6bebd205ef51 (diff) | |
| download | python-openstackclient-9f2ed6b03a1fdc1036aa8f8e3ea7b673a10da328.tar.gz | |
Merge "Improve output for "os security group show""
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/v2/security_group.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/compute/v2/security_group.py b/openstackclient/compute/v2/security_group.py index e3f542b5..a6f060f6 100644 --- a/openstackclient/compute/v2/security_group.py +++ b/openstackclient/compute/v2/security_group.py @@ -390,7 +390,7 @@ class ShowSecurityGroup(show.ShowOne): # Format rules into a list of strings info.update( - {'rules': rules} + {'rules': utils.format_list(rules, separator='\n')} ) # Map 'tenant_id' column to 'project_id' info.update( |
