runtime: Fix rpcstop call in python_setup.vim

This commit is contained in:
Thiago de Arruda 2014-10-23 10:10:18 -03:00
parent d1e063a8af
commit b4ec764e8e

View File

@ -42,5 +42,5 @@ let s:pyhost_id = rpcstart(s:python_interpreter,
" by the user's vimrc would not get has('python') == 1 " by the user's vimrc would not get has('python') == 1
if rpcrequest(s:pyhost_id, 'python_eval', '"o"+"k"') != 'ok' || !has('python') if rpcrequest(s:pyhost_id, 'python_eval', '"o"+"k"') != 'ok' || !has('python')
" Something went wrong " Something went wrong
rpcstop(s:pyhost_id) call rpcstop(s:pyhost_id)
endif endif