We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4700a64 commit c0584b3Copy full SHA for c0584b3
jupyterlab/handlers/extension_manager_handler.py
@@ -97,7 +97,7 @@ def list_extensions(self):
97
status = 'warning'
98
extensions.append(_make_extension_entry(
99
name=name,
100
- description=pkg_info['description'],
+ description=pkg_info.get('description', ''),
101
url=data['url'],
102
enabled=(name not in info['disabled']),
103
core=False,
@@ -112,7 +112,7 @@ def list_extensions(self):
112
if data is not None:
113
114
115
- description=data['description'],
+ description=data.get('description', ''),
116
url=data.get('homepage', ''),
117
installed=False,
118
enabled=False,
0 commit comments