From 3b486d3475af81838788c4e5581ed16e35e368b9 Mon Sep 17 00:00:00 2001 From: w0rp Date: Thu, 12 Jan 2017 13:11:10 +0000 Subject: [PATCH] Prefix mandatory flake8 arguments with extra spaces so they will always work --- ale_linters/python/flake8.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index cf9de6d..42b8ca7 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', {