summaryrefslogtreecommitdiff
path: root/heat/api/versions.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/api/versions.py')
-rw-r--r--heat/api/versions.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/heat/api/versions.py b/heat/api/versions.py
index 41cbf2699..c49b0ec76 100644
--- a/heat/api/versions.py
+++ b/heat/api/versions.py
@@ -13,9 +13,9 @@
"""Controller that returns information on the heat API versions."""
+import http.client
+
from oslo_serialization import jsonutils
-import six
-from six.moves import http_client
import webob.dec
@@ -43,11 +43,11 @@ class Controller(object):
body = jsonutils.dumps(dict(versions=version_objs))
response = webob.Response(request=req,
- status=http_client.MULTIPLE_CHOICES,
+ status=http.client.MULTIPLE_CHOICES,
content_type='application/json')
# NOTE(pas-ha) in WebOb, Response.body accepts only bytes,
# and Response.text accepts only unicode.
- response.text = six.text_type(body)
+ response.text = str(body)
return response