From fab79e3ff662457a962c385dc789e61422d58902 Mon Sep 17 00:00:00 2001 From: Sebastien Badia Date: Thu, 15 Aug 2013 17:27:17 +0200 Subject: [PATCH] [issue-767] Remove backslash in puppet-lint log format (refs: #767) --- syntax_checkers/puppet/puppetlint.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/puppet/puppetlint.vim b/syntax_checkers/puppet/puppetlint.vim index c65e601b..14afd8c6 100644 --- a/syntax_checkers/puppet/puppetlint.vim +++ b/syntax_checkers/puppet/puppetlint.vim @@ -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' })