From 4a65fbb8b171298ecee8562107e05d0f006532b3 Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 11 Dec 2016 10:23:09 +0100 Subject: [PATCH] Fixed wrong msg string concatenation --- ftplugin/python/pythonhelper.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/python/pythonhelper.vim b/ftplugin/python/pythonhelper.vim index 8819ecf..633faab 100644 --- a/ftplugin/python/pythonhelper.vim +++ b/ftplugin/python/pythonhelper.vim @@ -26,7 +26,7 @@ endfunction function! s:PHLoader() if !exists('g:pythonhelper_py_loaded') call s:SetPython("PythonHelper unavailable: " - \ "requires Vim with Python support") + \ . "requires Vim with Python support") execute g:_python['file'] . ' ' . s:plugin_path . '/pythonhelper.py' let g:pythonhelper_py_loaded = 1 else