Add safety guard for pylint.
This commit is contained in:
parent
a5c198f89b
commit
8805b83654
@ -49,8 +49,12 @@ function! SyntaxCheckers_python_pylint_GetLocList()
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function s:PylintNew()
|
function s:PylintNew()
|
||||||
let pylint_version = filter(split(system('pylint --version'), '\m, \|\n'), 'v:val =~# "^pylint"')[0]
|
try
|
||||||
return syntastic#util#versionIsAtLeast(syntastic#util#parseVersion(pylint_version), [1])
|
let pylint_version = filter(split(system('pylint --version'), '\m, \|\n'), 'v:val =~# "^pylint"')[0]
|
||||||
|
return syntastic#util#versionIsAtLeast(syntastic#util#parseVersion(pylint_version), [1])
|
||||||
|
catch /E684/
|
||||||
|
return 0
|
||||||
|
endtry
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
||||||
|
Loading…
Reference in New Issue
Block a user