summaryrefslogtreecommitdiff
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
commit4292d0103e5bd8a4ef4ede0a290f589a9d94c0fb (patch)
tree0d33ec1922387eff0dc0a63b6e1c6df00d87a715
parent1470030ce298c3f2401830b5a02fe5b76e221eb4 (diff)
downloadpylint-4292d0103e5bd8a4ef4ede0a290f589a9d94c0fb.tar.gz
update epylint to use msg-template rather than deprecated parseable reporter
-rwxr-xr-xepylint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/epylint.py b/epylint.py
index 125f956..fbdfdac 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)