1
0
mirror of https://github.com/gryf/pythonhelper.git synced 2025-12-18 12:00:27 +01:00

Fixed wrong msg string concatenation

This commit is contained in:
2016-12-11 10:23:09 +01:00
parent 468b229276
commit 4a65fbb8b1

View File

@@ -26,7 +26,7 @@ endfunction
function! s:PHLoader() function! s:PHLoader()
if !exists('g:pythonhelper_py_loaded') if !exists('g:pythonhelper_py_loaded')
call s:SetPython("PythonHelper unavailable: " call s:SetPython("PythonHelper unavailable: "
\ "requires Vim with Python support") \ . "requires Vim with Python support")
execute g:_python['file'] . ' ' . s:plugin_path . '/pythonhelper.py' execute g:_python['file'] . ' ' . s:plugin_path . '/pythonhelper.py'
let g:pythonhelper_py_loaded = 1 let g:pythonhelper_py_loaded = 1
else else