From c039b0f12840e05c1044fd2f5ea05fd96ff68844 Mon Sep 17 00:00:00 2001 From: Buck Golemon Date: Sun, 11 Mar 2012 22:04:47 -0700 Subject: [PATCH] fix pylint parsing --- 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 1fc880cb..62676f1f 100644 --- a/syntax_checkers/python/pylint.vim +++ b/syntax_checkers/python/pylint.vim @@ -9,6 +9,6 @@ function! SyntaxCheckers_python_GetLocList() \ shellescape(expand('%')) . \ ' \| sed ''s_: \[[RC]_: \[W_''' . \ ' \| sed ''s_: \[[F]_:\ \[E_''' - let errorformat = '%f:%l: [%t%n] %m,%-GNo config%m' + let errorformat = '%f:%l: [%t%n%.%#] %m,%-GNo config%m' return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat }) endfunction