瀏覽代碼

Remove print statement

Grant Nestor 8 年之前
父節點
當前提交
87b313733a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      jupyterlab/commands.py

+ 1 - 1
jupyterlab/commands.py

@@ -37,7 +37,7 @@ def run(cmd, **kwargs):
     try:
         return check_output(cmd, **kwargs)
     except CalledProcessError as error:
-        print(error.output)
+        raise error
 
 
 def install_extension(extension):