summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-02-01 22:46:41 -0500
committerNed Batchelder <ned@nedbatchelder.com>2011-02-01 22:46:41 -0500
commit67749e288dbb41ac63ab257f1be54856ecf279db (patch)
tree31caae73b86014106556931fe55b1ac78a557988 /Makefile
parentd85af798072dbec82fabdf2eee56e0b2dcd805c1 (diff)
downloadpython-coveragepy-git-67749e288dbb41ac63ab257f1be54856ecf279db.tar.gz
Pylint 0.23.0 'deprecated' disable-msg.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 978d4051..1c7a446e 100644
--- a/Makefile
+++ b/Makefile
@@ -27,8 +27,8 @@ clean:
LINTABLE = coverage setup.py test
lint:
- -python -x /Python25/Scripts/pylint.bat --rcfile=.pylintrc $(LINTABLE)
- python /Python25/Lib/tabnanny.py $(LINTABLE)
+ -pylint --rcfile=.pylintrc $(LINTABLE)
+ python -m tabnanny $(LINTABLE)
python checkeol.py
pep8: