Explorar el Código

More specific fix

Steven Silvester hace 7 años
padre
commit
08c6439305
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      jupyterlab/commands.py

+ 1 - 1
jupyterlab/commands.py

@@ -83,7 +83,7 @@ def run(cmd, **kwargs):
         logger.info(output)
         raise error
     finally:
-        if not proc.returncode:
+        if proc.returncode is None:
             proc.terminate()