SabarishVT

Results 1 comments of SabarishVT

```python if notebook is None: return Popen(command,shell=True, cwd=self._build_dir).wait() cmd = Popen(command,shell=True, cwd=self._build_dir, stdout=PIPE, stderr=STDOUT) ``` I was able to overcome the issue with subprocess.Popen error by modifying the above line...