From: Angus Salkeld Date: Mon, 19 Nov 2012 04:04:44 +0000 (+1100) Subject: Use jsonutils in ec2token X-Git-Tag: 2014.1~1200 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=722bb8a259762d0da4a76e5b078f0b1b266b07e7;p=openstack-build%2Fheat-build.git Use jsonutils in ec2token To get access to to_primitive() Change-Id: I9a09609b5469870a217386be9fbad9261ef0c815 --- 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