Skip to content

Commit 00155c1

Browse files
committed
Merge pull request #956 from chrisfilo/fix/ipcluster
better error reporting for ipython
2 parents 8f9d107 + 42a1761 commit 00155c1

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)