improve a warning that wasn't working

This commit is contained in:
David Halter
2013-08-26 20:04:58 +04:30
parent fa405c2e3d
commit d29bd89d58

View File

@@ -196,7 +196,7 @@ sys.path.insert(1, os.path.join(vim.eval('expand("<sfile>:p:h:h")'), 'plugin'))
try: try:
import jedi_vim import jedi_vim
except ImportError: except ImportError:
vim.eval('echom "Please install Jedi if you want to use jedi_vim."') vim.command('echoerr "Please install Jedi if you want to use jedi_vim."')
sys.path.pop(1) sys.path.pop(1)
PYTHONEOF PYTHONEOF