diff options
| author | Robert Collins <robertc@robertcollins.net> | 2014-01-30 08:13:48 +1300 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2014-01-30 08:13:48 +1300 |
| commit | 2c90b90bfcd2d106e9ef73df8c8595cb9dddf97a (patch) | |
| tree | 464b2cdbea7303824a6a2029cb724a7cb38721a5 | |
| parent | 657a8bab6ea8c46b4de5d62a0a1366051008d54a (diff) | |
| download | subunit-2c90b90bfcd2d106e9ef73df8c8595cb9dddf97a.tar.gz | |
Fix support for testtools 0.6.35.
| -rw-r--r-- | NEWS | 10 | ||||
| -rw-r--r-- | python/subunit/test_results.py | 1 |
2 files changed, 10 insertions, 1 deletions
@@ -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, |
