summaryrefslogtreecommitdiff
path: root/openstackclient/common/utils.py
diff options
context:
space:
mode:
authorTerry Howe <terrylhowe@gmail.com>2014-09-04 08:06:03 -0600
committerSteve Martinelli <stevemar@ca.ibm.com>2014-09-06 23:55:31 -0400
commit514ecc6e963bd0c05425f0da8aec79a69ed122c6 (patch)
treedae976e16ee325b502db2e19378b0e1f4dc2253c /openstackclient/common/utils.py
parentdc68d3f5cfb2df1008bfb342984bd7fe1298f917 (diff)
downloadpython-openstackclient-514ecc6e963bd0c05425f0da8aec79a69ed122c6.tar.gz
Unordered dicts and lists causes variable results
The unordered dict and lists causes variable results. The user may see different results and tests can fail. Might as well make this more consistent. Change-Id: I7045b40b44cbf3ee0f2ca79c6ea0d279b6d8cfe3
Diffstat (limited to 'openstackclient/common/utils.py')
-rw-r--r--openstackclient/common/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/common/utils.py b/openstackclient/common/utils.py
index 51c3ed4b..eb7f1b0e 100644
--- a/openstackclient/common/utils.py
+++ b/openstackclient/common/utils.py
@@ -77,7 +77,7 @@ def format_dict(data):
"""
output = ""
- for s in data:
+ for s in sorted(data):
output = output + s + "='" + six.text_type(data[s]) + "', "
return output[:-2]
@@ -89,7 +89,7 @@ def format_list(data):
:rtype: a string formatted to a,b,c
"""
- return ', '.join(data)
+ return ', '.join(sorted(data))
def get_item_properties(item, fields, mixed_case_fields=[], formatters={}):