We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7a13e commit 6c5f44dCopy full SHA for 6c5f44d
pylsp/config/config.py
@@ -50,7 +50,7 @@ def __init__(self, root_uri, init_opts, process_id, capabilities):
50
for entry_point in pkg_resources.iter_entry_points(PYLSP):
51
try:
52
entry_point.load()
53
- except ImportError as e:
+ except Exception as e: # pylint: disable=broad-except
54
log.warning("Failed to load %s entry point '%s': %s", PYLSP, entry_point.name, e)
55
self._pm.set_blocked(entry_point.name)
56
0 commit comments