summaryrefslogtreecommitdiff
path: root/python/subunit/details.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/subunit/details.py')
-rw-r--r--python/subunit/details.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/subunit/details.py b/python/subunit/details.py
index 1460170..c54a220 100644
--- a/python/subunit/details.py
+++ b/python/subunit/details.py
@@ -43,7 +43,11 @@ class SimpleDetailsParser(DetailsParser):
self._message += line
def get_details(self):
- return None
+ result = {}
+ result['traceback'] = content.Content(
+ content_type.ContentType("text", "x-traceback"),
+ lambda:[self._message])
+ return result
def get_message(self):
return self._message