Steven Silvester 7 年 前
コミット
fccb85e34e
1 ファイル変更1 行追加2 行削除
  1. 1 2
      jupyterlab/commands.py

+ 1 - 2
jupyterlab/commands.py

@@ -83,8 +83,7 @@ def run(cmd, **kwargs):
         logger.info(output)
         raise error
     finally:
-        if proc.returncode is None:
-            proc.terminate()
+        proc.wait()
 
 
 def install_extension(extension, app_dir=None, logger=None):