summaryrefslogtreecommitdiff
path: root/epylint.py
diff options
context:
space:
mode:
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 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)