From 89c995e7d964fb71c715e6f4ac330e4c59b44128 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 19 Sep 2019 00:46:16 +0200 Subject: [PATCH] display_debug_info: add global sys.executable (#947) This helps with bug reports in general. --- pythonx/jedi_vim_debug.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonx/jedi_vim_debug.py b/pythonx/jedi_vim_debug.py index e550a5b..69c59b6 100644 --- a/pythonx/jedi_vim_debug.py +++ b/pythonx/jedi_vim_debug.py @@ -33,6 +33,7 @@ def format_exc_info(exc_info=None, tb_indent=2): def display_debug_info(): + echo(' - global sys.executable: `{0}`'.format(sys.executable)) echo(' - global sys.version: `{0}`'.format( ', '.join([x.strip() for x in sys.version.split('\n')])))