summaryrefslogtreecommitdiff
path: root/glanceclient/exc.py
diff options
context:
space:
mode:
Diffstat (limited to 'glanceclient/exc.py')
-rw-r--r--glanceclient/exc.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/glanceclient/exc.py b/glanceclient/exc.py
index eee47ca..5efe805 100644
--- a/glanceclient/exc.py
+++ b/glanceclient/exc.py
@@ -16,8 +16,6 @@
import re
import sys
-import six
-
class BaseException(Exception):
"""An error occurred."""
@@ -179,8 +177,7 @@ def from_response(response, body=None):
details = ': '.join(details_temp)
return cls(details=details)
elif body:
- if six.PY3:
- body = body.decode('utf-8')
+ body = body.decode('utf-8')
details = body.replace('\n\n', '\n')
return cls(details=details)