Merge pull request #768 from sbadia/issue-767

Remove backslash in puppet-lint log format (fixes #767)
This commit is contained in:
LCD 47 2013-08-15 10:00:16 -07:00
commit 7da4da11ba

View File

@ -31,7 +31,7 @@ endfunction
function! SyntaxCheckers_puppet_puppetlint_GetLocList()
let makeprg = syntastic#makeprg#build({
\ 'exe': 'puppet-lint',
\ 'post_args': '--log-format "\%{KIND} [\%{check}] \%{message} at \%{fullpath}:\%{linenumber}"',
\ 'post_args': '--log-format "%{KIND} [%{check}] %{message} at %{fullpath}:%{linenumber}"',
\ 'filetype': 'puppet',
\ 'subchecker': 'puppetlint' })