diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2013-07-31 08:07:19 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2013-07-31 08:07:19 +0200 |
commit | 4292d0103e5bd8a4ef4ede0a290f589a9d94c0fb (patch) | |
tree | 0d33ec1922387eff0dc0a63b6e1c6df00d87a715 /epylint.py | |
parent | 1470030ce298c3f2401830b5a02fe5b76e221eb4 (diff) | |
download | pylint-4292d0103e5bd8a4ef4ede0a290f589a9d94c0fb.tar.gz |
update epylint to use msg-template rather than deprecated parseable reporter
Diffstat (limited to 'epylint.py')
-rwxr-xr-x | epylint.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ def lint(filename): # Start pylint # Ensure we use the python and pylint associated with the running epylint lintPath = os.path.join(os.path.dirname(__file__), 'lint.py') - cmd = [sys.executable, lintPath, '-f', 'parseable', '-r', 'n', + cmd = [sys.executable, lintPath, '--msg-template', '{path}:{line}: [{symbol}, {obj}] {msg}', '-r', 'n', '--disable=C,R,I', childPath] process = Popen(cmd, stdout=PIPE, cwd=parentPath, universal_newlines=True) |