[issue-767] Remove backslash in puppet-lint log format (refs: #767)

This commit is contained in:
Sebastien Badia 2013-08-15 17:27:17 +02:00
parent 2fd1b4a7c4
commit fab79e3ff6

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' })