From b4ec764e8e2dbd4a3ae4f29ed4d321ba51397b19 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Thu, 23 Oct 2014 10:10:18 -0300 Subject: [PATCH] runtime: Fix rpcstop call in python_setup.vim --- runtime/plugin/python_setup.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/plugin/python_setup.vim b/runtime/plugin/python_setup.vim index db8c6e3251..3a6c61bd1d 100644 --- a/runtime/plugin/python_setup.vim +++ b/runtime/plugin/python_setup.vim @@ -42,5 +42,5 @@ let s:pyhost_id = rpcstart(s:python_interpreter, " by the user's vimrc would not get has('python') == 1 if rpcrequest(s:pyhost_id, 'python_eval', '"o"+"k"') != 'ok' || !has('python') " Something went wrong - rpcstop(s:pyhost_id) + call rpcstop(s:pyhost_id) endif