diff options
author | Jenkins <jenkins@review.openstack.org> | 2014-06-27 02:29:13 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-06-27 02:29:13 +0000 |
commit | 6630554476e12bfff427016aab6aedb4eaa2f2c6 (patch) | |
tree | 090ff5fd4d16c6f486c613f0cb8493b85e9eb69a /heatclient/common/utils.py | |
parent | dc5911e1a34b3323820cd573e094e1ac59fd0987 (diff) | |
parent | 99b1536785ef986acf053fa958f51fb24923f171 (diff) | |
download | python-heatclient-0.2.10.tar.gz |
Merge "Fix unicode display in parameters"0.2.10
Diffstat (limited to 'heatclient/common/utils.py')
-rw-r--r-- | heatclient/common/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/common/utils.py b/heatclient/common/utils.py index fb9400d..901b526 100644 --- a/heatclient/common/utils.py +++ b/heatclient/common/utils.py @@ -41,7 +41,7 @@ def link_formatter(links): def json_formatter(js): - return jsonutils.dumps(js, indent=2) + return jsonutils.dumps(js, indent=2, ensure_ascii=False) def text_wrap_formatter(d): |