From b96bcf71fcfd23eb2e5c636f8eee626c11c14960 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 23 Feb 2016 20:20:57 +0100 Subject: Python 3 fix for Tomcat.get_major_version() I forgot to decode the output of subprocess.check_call(). All other places decode bytes to text properly. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 4024f1df4..dc75a8b55 100644 --- a/tox.ini +++ b/tox.ini @@ -34,7 +34,7 @@ commands = {envpython} {envbindir}/pki-server --help {envpython} {envbindir}/pki-server-upgrade --help {envpython} {envbindir}/pki-upgrade --help - py.test --capture=no --strict {posargs} + py.test --capture=no --strict tests/python {posargs} [testenv:lint] basepython = python2.7 -- cgit