Python executable check should use the variable, not a string

This commit is contained in:
Mitchell Hashimoto 2012-01-26 11:29:07 -08:00
parent 31970a8ac0
commit c6d464bb62

View File

@ -20,7 +20,7 @@ endif
let loaded_python_syntax_checker = 1
"bail if the user doesnt have his favorite checker or flake8 or pyflakes installed
if !exists('g:syntastic_python_checker') || !executable('g:syntastic_python_checker')
if !exists('g:syntastic_python_checker') || !executable(g:syntastic_python_checker)
if executable("flake8")
let g:syntastic_python_checker = 'flake8'
elseif executable("pyflakes")