summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPiet Delport <pjdelport@gmail.com>2016-01-04 16:09:18 +0200
committerPiet Delport <pjdelport@gmail.com>2016-01-04 16:09:18 +0200
commitb5ded7a6bc0e7407c08813faa95b66a624d60f52 (patch)
treeab9db4a953c1bfd7770488765fba9d117e1e40d2 /tests
parentb9e5e7fe4f721a1705b02fc16e891a451ac298a2 (diff)
downloadtox-b5ded7a6bc0e7407c08813faa95b66a624d60f52.tar.gz
Remove separating spaces in "print (...)" (pep8 E211)fix-flakes
Diffstat (limited to 'tests')
-rw-r--r--tests/test_interpreters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_interpreters.py b/tests/test_interpreters.py
index d2cfa27..c658380 100644
--- a/tests/test_interpreters.py
+++ b/tests/test_interpreters.py
@@ -41,7 +41,7 @@ def test_tox_get_python_executable():
if sys.platform == "win32":
pydir = "python%s" % ver.replace(".", "")
x = py.path.local("c:\%s" % pydir)
- print (x)
+ print(x)
if not x.check():
continue
else: