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 d901415 commit 7b5815eCopy full SHA for 7b5815e
jupyter_server/extension/manager.py
@@ -175,10 +175,10 @@ def _validate_name(self, proposed):
175
self._extension_points = {}
176
try:
177
self._module, self._metadata = get_metadata(name)
178
- except ImportError:
+ except ImportError as e:
179
raise ExtensionModuleNotFound(
180
- "The module '{name}' could not be found. Are you "
181
- "sure the extension is installed?".format(name=name)
+ "The module '{name}' could not be found ({e}). Are you "
+ "sure the extension is installed?".format(name=name, e=e)
182
)
183
# Create extension point interfaces for each extension path.
184
for m in self._metadata:
0 commit comments