Merge pull request #3590 from blueyed/fix-python-provider-finish

runtime/autoload/provider/python{,3}.vim: fix E168
This commit is contained in:
Justin M. Keyes 2015-11-03 19:08:44 -05:00
commit 4196d0b983
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ function! provider#python#Call(method, args)
echohl WarningMsg
echomsg v:exception
echohl None
finish
return
endtry
endif
return call(s:rpcrequest, insert(insert(a:args, 'python_'.a:method), s:host))

View File

@ -46,7 +46,7 @@ function! provider#python3#Call(method, args)
echohl WarningMsg
echomsg v:exception
echohl None
finish
return
endtry
endif
return call(s:rpcrequest, insert(insert(a:args, 'python_'.a:method), s:host))