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
commited554fe8552d3810252d485dd7ae4d4302822681 (patch)
treea3fb7b881af24c0896af1fd460478ff43cf0c6f7 /Makefile
parent6829e486d30a0d4174777a6f5649c68e47ba073e (diff)
downloadpython-coveragepy-ed554fe8552d3810252d485dd7ae4d4302822681.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 978d405..1c7a446 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: