From ea5e87a703578cf559c2a5fbed1e822a3cd0f363 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 17 Feb 2019 18:03:48 +0100 Subject: [PATCH] Remove jedi.NotFoundError, because that was removed quite a while ago, see #899 --- pythonx/jedi_vim.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pythonx/jedi_vim.py b/pythonx/jedi_vim.py index 19aec31..4419b48 100644 --- a/pythonx/jedi_vim.py +++ b/pythonx/jedi_vim.py @@ -420,8 +420,6 @@ def show_documentation(): script = get_script() try: definitions = script.goto_definitions() - except jedi.NotFoundError: - definitions = [] except Exception: # print to stdout, will be in :messages definitions = []