diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-07-05 07:41:38 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-07-05 07:44:24 +0200 |
commit | 8c9b035f8a3855e2903fa7b181ef57952efc6b8e (patch) | |
tree | f7a9c760dc684217f9f5663c1f45d14c2da186f8 /pyGHDL/cli | |
parent | 33efa88f8fabd3809718513cbaf415a5b3b2d553 (diff) | |
download | ghdl-8c9b035f8a3855e2903fa7b181ef57952efc6b8e.tar.gz ghdl-8c9b035f8a3855e2903fa7b181ef57952efc6b8e.tar.bz2 ghdl-8c9b035f8a3855e2903fa7b181ef57952efc6b8e.zip |
lsp.py: print python platform and name for disp-config
Diffstat (limited to 'pyGHDL/cli')
-rw-r--r-- | pyGHDL/cli/lsp.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |