From b4095177777f994a9ca3710c655d60fdd3c73734 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 26 Mar 2015 10:59:25 +0100 Subject: [PATCH] tox: Use python -m pep257 for pep257. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6c73232db..de19fab5d 100644 --- a/tox.ini +++ b/tox.ini @@ -55,7 +55,7 @@ deps = pep257==0.5.0 # D102: Docstring missing, will be handled by others # D209: Blank line before closing """ (removed from PEP257) # D402: First line should not be function's signature (false-positives) -commands = {envdir}/bin/pep257 scripts qutebrowser --ignore=D102,D209,D402 '--match=(?!resources|test_content_disposition).*\.py' +commands = {envpython} -m pep257 scripts qutebrowser --ignore=D102,D209,D402 '--match=(?!resources|test_content_disposition).*\.py' [testenv:flake8] deps =