From 90cd4e515729adafcf111f0773fc2d7e79628eec Mon Sep 17 00:00:00 2001 From: Emile Anclin Date: Tue, 11 May 2010 17:57:40 +0200 Subject: fix epylint : use new options --- epylint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epylint.py') diff --git a/epylint.py b/epylint.py index b2c127a..250e220 100755 --- a/epylint.py +++ b/epylint.py @@ -58,7 +58,7 @@ def lint(filename): parentPath = os.path.dirname(parentPath) # Start pylint - process = Popen("pylint -f parseable -r n --disable-msg-cat=CRI '%s'" % + process = Popen("pylint -f parseable -r n --disable=C,R,I '%s'" % childPath, shell=True, stdout=PIPE, stderr=PIPE, cwd=parentPath) p = process.stdout -- cgit v1.2.1