From 1a91488451c5a003dd13ac753467e3d3ef16dd9c Mon Sep 17 00:00:00 2001 From: Buck Golemon Date: Mon, 12 Mar 2012 12:15:51 -0700 Subject: [PATCH] prevent stderr from messing up the terminal, in the (usual) case of no pylintrc found --- syntax_checkers/python/pylint.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/python/pylint.vim b/syntax_checkers/python/pylint.vim index 62676f1f..afeb76a0 100644 --- a/syntax_checkers/python/pylint.vim +++ b/syntax_checkers/python/pylint.vim @@ -7,7 +7,7 @@ function! SyntaxCheckers_python_GetLocList() let makeprg = 'pylint -f parseable -r n -i y ' . \ shellescape(expand('%')) . - \ ' \| sed ''s_: \[[RC]_: \[W_''' . + \ ' \|& sed ''s_: \[[RC]_: \[W_''' . \ ' \| sed ''s_: \[[F]_:\ \[E_''' let errorformat = '%f:%l: [%t%n%.%#] %m,%-GNo config%m' return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })