aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin/python_setup.vim
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-10-23 22:19:18 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-10-23 22:19:18 -0300
commit65942d3a8d84510fcee2dd1c6306a5af13296c84 (patch)
treecbb3ce006567835f4ed64582cfa4c0181bd2d7bb /runtime/plugin/python_setup.vim
parentd1e063a8af57661c37da31954346b2b9f73dd9b5 (diff)
parentd696fa51f8a295942da8952d7f85c44b9afac67e (diff)
downloadrneovim-65942d3a8d84510fcee2dd1c6306a5af13296c84.tar.gz
rneovim-65942d3a8d84510fcee2dd1c6306a5af13296c84.tar.bz2
rneovim-65942d3a8d84510fcee2dd1c6306a5af13296c84.zip
Merge PR #1331 'Fixes to job and channel modules'
Diffstat (limited to 'runtime/plugin/python_setup.vim')
-rw-r--r--runtime/plugin/python_setup.vim2
1 files changed, 1 insertions, 1 deletions
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