From 8c9b035f8a3855e2903fa7b181ef57952efc6b8e Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Mon, 5 Jul 2021 07:41:38 +0200 Subject: lsp.py: print python platform and name for disp-config --- pyGHDL/cli/lsp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyGHDL/cli/lsp.py b/pyGHDL/cli/lsp.py index fa89bc7e8..ef0591e62 100644 --- a/pyGHDL/cli/lsp.py +++ b/pyGHDL/cli/lsp.py @@ -107,6 +107,9 @@ def main(): if args.disp_config: errorout_console.Install_Handler() libghdl.disp_config() + print("python:") + print("sys.platform: {}, os.name: {}".format(sys.platform, os.name)) + print(sys.version) return # Setup logging -- cgit v1.2.3