summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-31 15:19:58 +0100
committerw0rp <devw0rp@gmail.com>2017-05-31 15:20:12 +0100
commit42efd517232c3f62289910e53f1d2fe2549196cf (patch)
tree14f1b5958d0a09ffe8c65e3b9a57c973a4f14a02 /ale_linters
parent5eb80f03a2d0831a1fc3b06790f634d7f2b09658 (diff)
downloadale-42efd517232c3f62289910e53f1d2fe2549196cf.zip
Fix #596 - Report exceptions thrown by flake8
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/python/flake8.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim
index 1bed03b5..253c7101 100644
--- a/ale_linters/python/flake8.vim
+++ b/ale_linters/python/flake8.vim
@@ -99,7 +99,7 @@ call ale#linter#Define('python', {
\ 'executable_callback': 'ale_linters#python#flake8#GetExecutable',
\ 'command_chain': [
\ {'callback': 'ale_linters#python#flake8#VersionCheck'},
-\ {'callback': 'ale_linters#python#flake8#GetCommand'},
+\ {'callback': 'ale_linters#python#flake8#GetCommand', 'output_stream': 'both'},
\ ],
\ 'callback': 'ale#handlers#python#HandlePEP8Format',
\})