diff --git a/setup.py b/setup.py index 6893e3c..efde169 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def finalize_options(self): def run(self): output_format = sys.stdout.isatty() and "colorized" or "text" - print "running pep8" + print("running pep8") cmd = "pep8 " cmd += "--config tests/pep8.cfg " cmd += " ".join(CHECK_FILES) @@ -65,7 +65,7 @@ def run(self): if r != 0: sys.exit(r) - print "running pylint" + print("running pylint") cmd = "pylint " cmd += "--rcfile tests/pylint.cfg " cmd += "--output-format=%s " % output_format