summaryrefslogtreecommitdiff
path: root/cinderclient/shell_utils.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-03-08 16:02:59 +0000
committerGerrit Code Review <review@openstack.org>2021-03-08 16:02:59 +0000
commit8e804292db6922516e8a6fd52d14dcd64396d00c (patch)
treedc917fcfb5c55a13aec7f62afd2c7c1e436bbb3a /cinderclient/shell_utils.py
parentd2b3351a57ae054cbd7cdef2c8e0bca5f22ae0b0 (diff)
parentcea1f674ae1ce545c0cac209b423ac9d626f0c68 (diff)
downloadpython-cinderclient-8e804292db6922516e8a6fd52d14dcd64396d00c.tar.gz
Merge "Remove all usage of six library"
Diffstat (limited to 'cinderclient/shell_utils.py')
-rw-r--r--cinderclient/shell_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cinderclient/shell_utils.py b/cinderclient/shell_utils.py
index b5db281..cd8f162 100644
--- a/cinderclient/shell_utils.py
+++ b/cinderclient/shell_utils.py
@@ -201,7 +201,7 @@ def print_resource_filter_list(filters):
def quota_show(quotas):
- quotas_info_dict = utils.unicode_key_value_to_string(quotas._info)
+ quotas_info_dict = quotas._info
quota_dict = {}
for resource in quotas_info_dict.keys():
good_name = False
@@ -216,7 +216,7 @@ def quota_show(quotas):
def quota_usage_show(quotas):
quota_list = []
- quotas_info_dict = utils.unicode_key_value_to_string(quotas._info)
+ quotas_info_dict = quotas._info
for resource in quotas_info_dict.keys():
good_name = False
for name in _quota_resources: