소스 검색

fix handling of _build data

Steven Silvester 4 년 전
부모
커밋
0e5be73293
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jupyterlab/labapp.py

+ 1 - 1
jupyterlab/labapp.py

@@ -709,7 +709,7 @@ class LabApp(NBClassicConfigShimMixin, LabServerApp):
         info = get_app_info()
         extensions = page_config['dynamic_extensions'] = []
         for (ext, ext_data) in info.get('dynamic_exts', dict()).items():
-            extbuild = ext_data['_build']
+            extbuild = ext_data['jupyterlab']['_build']
             extension = {
                 'name': ext_data['name'],
                 'load': extbuild['load']