summaryrefslogtreecommitdiff
path: root/heatclient/shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/shell.py')
-rw-r--r--heatclient/shell.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/heatclient/shell.py b/heatclient/shell.py
index cf143bf..9123bac 100644
--- a/heatclient/shell.py
+++ b/heatclient/shell.py
@@ -22,7 +22,6 @@ from keystoneauth1.identity import generic
from keystoneauth1 import session as kssession
from oslo_utils import encodeutils
from oslo_utils import importutils
-import six
import heatclient
from heatclient._i18n import _
@@ -610,7 +609,7 @@ def main(args=None):
if '--debug' in args or '-d' in args:
raise
else:
- print(encodeutils.safe_encode(six.text_type(e)), file=sys.stderr)
+ print(encodeutils.safe_encode(str(e)), file=sys.stderr)
sys.exit(1)