diff --git a/README.markdown b/README.markdown index f18ecae1..20363970 100644 --- a/README.markdown +++ b/README.markdown @@ -131,7 +131,7 @@ create an issue - or better yet, create a pull request. __Q. The `python` checker complains about syntactically valid Python 3 constructs...__ -A. Configure the `python` checker to calls a Python 3 interpreter rather than +A. Configure the `python` checker to call a Python 3 interpreter rather than Python 2, e.g: ```vim let g:syntastic_python_python_exec = '/path/to/python3' diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index b2a8e69f..de5a50e9 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:syntastic_start endif -let g:syntastic_version = '3.4.0-131' +let g:syntastic_version = '3.4.0-132' lockvar g:syntastic_version " Sanity checks {{{1