diff options
author | Daniel Hahler <github@thequod.de> | 2018-02-22 02:37:23 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-22 02:37:23 +0100 |
commit | 1eb4aff57a7c3f247b3d6267b608308ac96f5ec9 (patch) | |
tree | 3fa7d5980499578bf97ddd0d52836012ecedc04a | |
parent | c8074e3792727a378cf8510a347ac6b784b210c8 (diff) | |
download | rneovim-1eb4aff57a7c3f247b3d6267b608308ac96f5ec9.tar.gz rneovim-1eb4aff57a7c3f247b3d6267b608308ac96f5ec9.tar.bz2 rneovim-1eb4aff57a7c3f247b3d6267b608308ac96f5ec9.zip |
checkhealth: python: do not report pythonx_errs twice (#8045)
They get reported unconditionally as errors below.
-rw-r--r-- | runtime/autoload/health/provider.vim | 3 |
1 files changed, 0 insertions, 3 deletions
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) |