summaryrefslogtreecommitdiff
path: root/heat/engine/resources/openstack/mistral/external_resource.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/engine/resources/openstack/mistral/external_resource.py')
-rw-r--r--heat/engine/resources/openstack/mistral/external_resource.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/heat/engine/resources/openstack/mistral/external_resource.py b/heat/engine/resources/openstack/mistral/external_resource.py
index 9e8f1b70e..a38e35b4e 100644
--- a/heat/engine/resources/openstack/mistral/external_resource.py
+++ b/heat/engine/resources/openstack/mistral/external_resource.py
@@ -13,7 +13,6 @@
from oslo_log import log as logging
from oslo_serialization import jsonutils
-import six
from heat.common import exception
from heat.common.i18n import _
@@ -212,7 +211,7 @@ class MistralExternalResource(resource.Resource):
LOG.debug('ExternalResource id set to %(rid)s from Mistral '
'execution %(eid)s output' % {'eid': execution_id,
'rid': rsrc_id})
- self.resource_id_set(six.text_type(rsrc_id)[:255])
+ self.resource_id_set(str(rsrc_id)[:255])
return success
def _resolve_attribute(self, name):