summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--testrepository/setuptools_command.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 419c19e..2200e1c 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,9 @@ NEXT (In development)
CHANGES
-------
+* Fix Python 3.* support for entrypoints; the initial code was Python3
+ incompatible. (Robert Collins, Clark Boylan, #1187192)
+
* Switch to using multiprocessing to determine CPU counts.
(Chris Jones, #1092276)
diff --git a/testrepository/setuptools_command.py b/testrepository/setuptools_command.py
index 2718e3e..fbaf606 100644
--- a/testrepository/setuptools_command.py
+++ b/testrepository/setuptools_command.py
@@ -77,7 +77,7 @@ class Testr(cmd.Command):
raise distutils.errors.DistutilsError(
"testr failed (%d)" % testr_ret)
if self.slowest:
- print "Slowest Tests"
+ print ("Slowest Tests")
self._run_testr("slowest")
if self.coverage:
self._coverage_after()