diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-22 19:04:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 19:04:55 +0200 |
commit | 983236ac3dfd0c455a0ac910a9a468ea2c81e5d9 (patch) | |
tree | 2cc031d1ee5e38edc4897691a3d7029b7125c4aa /pyGHDL/lsp/lsp.py | |
parent | bcd26f428e704eef5ef665bea7448f3990b5e010 (diff) | |
parent | 79d7e4f88b5ea170386628e3d2d00a1bd9634154 (diff) | |
download | ghdl-983236ac3dfd0c455a0ac910a9a468ea2c81e5d9.tar.gz ghdl-983236ac3dfd0c455a0ac910a9a468ea2c81e5d9.tar.bz2 ghdl-983236ac3dfd0c455a0ac910a9a468ea2c81e5d9.zip |
Fix Codacy issues
Diffstat (limited to 'pyGHDL/lsp/lsp.py')
-rw-r--r-- | pyGHDL/lsp/lsp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/lsp/lsp.py b/pyGHDL/lsp/lsp.py index a2598f186..43b8c47c8 100644 --- a/pyGHDL/lsp/lsp.py +++ b/pyGHDL/lsp/lsp.py @@ -117,7 +117,7 @@ class LanguageProtocolServer(object): params = {} try: response = fmethod(**params) - except Exception as e: + except Exception: log.exception( "Caught exception while handling %s with params %s:", method, params ) |