summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--python/subunit/test_results.py1
2 files changed, 10 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index f16d434..9d1100c 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,16 @@ subunit release notes
NEXT (In development)
---------------------
+0.0.18
+------
+
+IMPROVMENTS
+~~~~~~~~~~~
+
+* Fix compatibility with testtools 0.9.35 which dropped the 'all' compat
+ symbol. This breaks support for Python versions lower than 2.6.
+ (Robert Collins, #1274056)
+
0.0.17
------
diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py
index 8c89d9b..b3ca968 100644
--- a/python/subunit/test_results.py
+++ b/python/subunit/test_results.py
@@ -20,7 +20,6 @@ import csv
import datetime
import testtools
-from testtools.compat import all
from testtools.content import (
text_content,
TracebackContent,