1
0
mirror of https://github.com/gryf/pep8-vim.git synced 2025-12-19 12:37:59 +01:00

Fixed wrong msg string concatenation

This commit is contained in:
2016-12-11 10:21:57 +01:00
parent f10cdc6ba6
commit 5c254f727d

View File

@@ -75,8 +75,8 @@ endfunction
function! s:LoadPep8()
if !exists('g:pep8_fn_initialized ')
call s:SetPython("Pep8 command cannot be initialized no python "
\ "support compiled in vim.")
call s:SetPython("Pep8 command cannot be initialized - no python "
\ . "support compiled in vim.")
execute g:_python['file'] . ' ' . s:plugin_path . '/pep8_fn.py'
let g:pep8_fn_initialized = 1
endif