diff options
author | w0rp <devw0rp@gmail.com> | 2017-01-12 13:11:10 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-01-12 13:11:10 +0000 |
commit | 3b486d3475af81838788c4e5581ed16e35e368b9 (patch) | |
tree | 750729145b8b2313b3b9f8315e9d556d7c8b4e76 /ale_linters/python/flake8.vim | |
parent | 9191750b5b1f88b1e6e632b70caeff3d01d9ea78 (diff) | |
download | ale-3b486d3475af81838788c4e5581ed16e35e368b9.zip |
Prefix mandatory flake8 arguments with extra spaces so they will always work
Diffstat (limited to 'ale_linters/python/flake8.vim')
-rw-r--r-- | ale_linters/python/flake8.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index cf9de6d3..42b8ca78 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -13,7 +13,7 @@ endfunction function! ale_linters#python#flake8#GetCommand(buffer) abort return ale_linters#python#flake8#GetExecutable(a:buffer) - \ . ' ' . g:ale_python_flake8_args . '--stdin-display-name %s -' + \ . ' ' . g:ale_python_flake8_args . ' --stdin-display-name %s -' endfunction call ale#linter#Define('python', { |