summaryrefslogtreecommitdiff
path: root/epylint.py
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2013-07-31 08:07:19 +0200
committerSylvain Thénault <sylvain.thenault@logilab.fr>2013-07-31 08:07:19 +0200
commit3c41a7c1520bcecbeab248b5623b497ea22d3da8 (patch)
tree214ed27c9447986ed9d0f0d718c7329fcfe361ef /epylint.py
parent60c8d487eaecca25d202524662ceb27d9b136cc0 (diff)
downloadpylint-git-3c41a7c1520bcecbeab248b5623b497ea22d3da8.tar.gz
update epylint to use msg-template rather than deprecated parseable reporter
Diffstat (limited to 'epylint.py')
-rwxr-xr-xepylint.py2
1 files changed, 1 insertions, 1 deletions
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)