Selaa lähdekoodia

Remove print statement

Grant Nestor 8 vuotta sitten
vanhempi
commit
87b313733a
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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):