Merge pull request #1436 from bmihelac/fix-1435-msgfmt-output-stdout

fix: po msgfmt output to stdout (#1435)
This commit is contained in:
w0rp 2018-03-21 10:56:31 +00:00 committed by GitHub
commit c0279de661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ call ale#linter#Define('po', {
\ 'name': 'msgfmt',
\ 'executable': 'msgfmt',
\ 'output_stream': 'stderr',
\ 'command': 'msgfmt --statistics %t',
\ 'command': 'msgfmt --statistics --output-file=- %t',
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})