From 3c41a7c1520bcecbeab248b5623b497ea22d3da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sylvain=20Th=C3=A9nault?= Date: Wed, 31 Jul 2013 08:07:19 +0200 Subject: update epylint to use msg-template rather than deprecated parseable reporter --- epylint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epylint.py') diff --git a/epylint.py b/epylint.py index 125f9568a..fbdfdacd7 100755 --- a/epylint.py +++ b/epylint.py @@ -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) -- cgit v1.2.1