Commit c92159aa authored by Thomas Heller's avatar Thomas Heller

dict.keys() returns an iterable, convert it into a list.

parent 3b645802
......@@ -124,7 +124,7 @@ class TestRunner(unittest.TextTestRunner):
self.stream.writeln(result.separator2)
run = result.testsRun
if _unavail: #skipped:
requested = _unavail.keys()
requested = list(_unavail.keys())
requested.sort()
self.stream.writeln("Ran %d test%s in %.3fs (%s module%s skipped)" %
(run, run != 1 and "s" or "", timeTaken,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment