From 722bb8a259762d0da4a76e5b078f0b1b266b07e7 Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Mon, 19 Nov 2012 15:04:44 +1100 Subject: [PATCH] Use jsonutils in ec2token To get access to to_primitive() Change-Id: I9a09609b5469870a217386be9fbad9261ef0c815 --- heat/api/aws/ec2token.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heat/api/aws/ec2token.py b/heat/api/aws/ec2token.py index dec0afd5..5becab2c 100644 --- a/heat/api/aws/ec2token.py +++ b/heat/api/aws/ec2token.py @@ -13,7 +13,6 @@ # License for the specific language governing permissions and limitations # under the License. -import json import urlparse import httplib import gettext @@ -21,6 +20,7 @@ import gettext gettext.install('heat', unicode=1) from heat.common import wsgi +from heat.openstack.common import jsonutils as json import webob from heat.api.aws import exception @@ -81,7 +81,7 @@ class EC2Token(wsgi.Middleware): try: creds_json = json.dumps(creds) except TypeError: - creds_json = json.dumps(to_primitive(creds)) + creds_json = json.dumps(json.to_primitive(creds)) headers = {'Content-Type': 'application/json'} # Disable 'has no x member' pylint error -- 2.45.2