setup.py: use python3-safe print() call

This commit is contained in:
Brian Warner 2016-09-09 17:09:42 -07:00
parent 3aac5aa577
commit 2a44a8e8cc

View File

@ -231,7 +231,7 @@ class PleaseUseTox(Command):
pass
def run(self):
print "ERROR: Please use 'tox' to run the test suite."
print("ERROR: Please use 'tox' to run the test suite.")
sys.exit(1)
setup_args = {}