diff options
| author | Richard Theis <rtheis@us.ibm.com> | 2016-04-12 12:42:13 -0500 |
|---|---|---|
| committer | Richard Theis <rtheis@us.ibm.com> | 2016-04-12 12:42:13 -0500 |
| commit | 3a4d53a93bb62f5bd2e21db1727ef74f771075d8 (patch) | |
| tree | a83e4db500867a23e36b42b3b9b53b108b29320d /openstackclient/network | |
| parent | 3be49a8abe9fc77cd2ab257ecf180d527c06cbce (diff) | |
| download | python-openstackclient-3a4d53a93bb62f5bd2e21db1727ef74f771075d8.tar.gz | |
Fix prefixes output for subnet pool list
Fixed "os subnet pool list" command to properly disply the
list of subnet pool prefixes in the "Prefixes" column. This
fix is consistent with the "os subnet pool create" and
"os subnet pool show" command output.
Change-Id: I431d85c3b7f5bf8a327500decf3a15063fc5b120
Closes-Bug: #1569480
Diffstat (limited to 'openstackclient/network')
| -rw-r--r-- | openstackclient/network/v2/subnet_pool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/network/v2/subnet_pool.py b/openstackclient/network/v2/subnet_pool.py index 6b6fc090..f1fd9a61 100644 --- a/openstackclient/network/v2/subnet_pool.py +++ b/openstackclient/network/v2/subnet_pool.py @@ -184,7 +184,7 @@ class ListSubnetPool(command.Lister): return (headers, (utils.get_item_properties( s, columns, - formatters={}, + formatters=_formatters, ) for s in data)) |
