From 5c254f727db2128544b88f68ac0efc659088965f Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 11 Dec 2016 10:21:57 +0100 Subject: [PATCH] Fixed wrong msg string concatenation --- ftplugin/python/pep8_fn.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ftplugin/python/pep8_fn.vim b/ftplugin/python/pep8_fn.vim index 2c3f147..77cf225 100644 --- a/ftplugin/python/pep8_fn.vim +++ b/ftplugin/python/pep8_fn.vim @@ -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