diff options
| author | Jake Yip <jake.yip@unimelb.edu.au> | 2017-12-21 14:50:29 +1100 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2018-07-23 17:42:34 -0500 |
| commit | b90b93e143e88a5f425e44a45f3c976c4f891407 (patch) | |
| tree | 310ca18604ee032555cd29e0b20a70b5e5f11677 /openstackclient/image | |
| parent | ee35409069b0f77984e912cfc0c90cb9cce52512 (diff) | |
| download | python-openstackclient-b90b93e143e88a5f425e44a45f3c976c4f891407.tar.gz | |
Fix error with image show when image name is None
Need to bump osc-lib to 1.10.0
Closes-Bug: #1736696
Depends-On: I2aab5cc1f550848bda2b90ef7ef9a60f07b88996
Change-Id: I7420204f28d36529354e5671bd88587d9b15bb06
Diffstat (limited to 'openstackclient/image')
| -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 4c7c815f..5c7d32d4 100644 --- a/openstackclient/image/v2/image.py +++ b/openstackclient/image/v2/image.py @@ -585,7 +585,7 @@ class ListImage(command.Lister): property_field='properties', ) - data = utils.sort_items(data, parsed_args.sort) + data = utils.sort_items(data, parsed_args.sort, str) return ( column_headers, |
