diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-06-22 12:26:43 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-06-22 18:51:02 +0200 |
commit | 51e9764f04da876993a80f6f09910e019eb84446 (patch) | |
tree | e58928ecfbafb74bf33e8873423e7ed5874422c2 /pyGHDL/lsp/lsp.py | |
parent | 25a3580831170f8a0acd0a79aca2c94ea4652338 (diff) | |
download | ghdl-51e9764f04da876993a80f6f09910e019eb84446.tar.gz ghdl-51e9764f04da876993a80f6f09910e019eb84446.tar.bz2 ghdl-51e9764f04da876993a80f6f09910e019eb84446.zip |
fix issues reported by Codacy
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 ) |