summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/subunit/details.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/details.py b/python/subunit/details.py
index 65a0404..acd6d0d 100644
--- a/python/subunit/details.py
+++ b/python/subunit/details.py
@@ -92,7 +92,7 @@ class MultipartDetailsParser(DetailsParser):
residue = self._chunk_parser.write(line)
if residue is not None:
# Line based use always ends on no residue.
- assert residue == ''
+ assert residue == '', 'residue: %r' % (residue,)
body = self._body
self._details[self._name] = content.Content(
self._content_type, lambda:[body.getvalue()])