Skip to content

Commit 42a1761

Browse files
committed
better error reporting
1 parent 35c9f46 commit 42a1761

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

nipype/pipeline/plugins/ipython.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ def run(self, graph, config, updatehash=False):
6363
except Exception, e:
6464
if isinstance(e, TimeoutError):
6565
raise Exception("No IPython clients found.")
66+
if isinstance(e, IOError):
67+
raise Exception("ipcluster/ipcontroller has not been started")
6668
if isinstance(e, ValueError):
6769
raise Exception("Ipython kernel not installed")
6870
raise e

0 commit comments

Comments
 (0)