summaryrefslogtreecommitdiff
path: root/openstackclient/image
diff options
context:
space:
mode:
authorJake Yip <jake.yip@unimelb.edu.au>2017-12-21 14:50:29 +1100
committerDean Troyer <dtroyer@gmail.com>2018-07-23 17:42:34 -0500
commitb90b93e143e88a5f425e44a45f3c976c4f891407 (patch)
tree310ca18604ee032555cd29e0b20a70b5e5f11677 /openstackclient/image
parentee35409069b0f77984e912cfc0c90cb9cce52512 (diff)
downloadpython-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.py2
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,