From 1eb4aff57a7c3f247b3d6267b608308ac96f5ec9 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 22 Feb 2018 02:37:23 +0100 Subject: checkhealth: python: do not report pythonx_errs twice (#8045) They get reported unconditionally as errors below. --- runtime/autoload/health/provider.vim | 3 --- 1 file changed, 3 deletions(-) (limited to 'runtime') diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index e5daa0a4cc..b124d04ea8 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -289,9 +289,6 @@ function! s:check_python(version) abort if empty(pyname) call health#report_warn('No Python interpreter was found with the neovim ' \ . 'module. Using the first available for diagnostics.') - if !empty(pythonx_errs) - call health#report_warn(pythonx_errs) - endif endif if !empty(pyname) -- cgit