summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/httpexceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/httpexceptions.py b/pyramid/httpexceptions.py
index a22b088c6..1f3934fdc 100644
--- a/pyramid/httpexceptions.py
+++ b/pyramid/httpexceptions.py
@@ -238,7 +238,7 @@ ${body}''')
del self.content_length
def __str__(self):
- return self.detail or self.explanation
+ return str(self.detail) if self.detail else self.explanation
def _json_formatter(self, status, body, title, environ):
return {'message': body,