From 3e520e066b5bc5ca37f3c336fa8eca47999e4ed7 Mon Sep 17 00:00:00 2001 From: Min RK Date: Mon, 11 May 2015 13:50:33 -0700 Subject: [PATCH] s/ipython_parallel/ipyparallel --- jupyter_notebook/services/clusters/clustermanager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyter_notebook/services/clusters/clustermanager.py b/jupyter_notebook/services/clusters/clustermanager.py index ba7972008..f2e98a5f4 100644 --- a/jupyter_notebook/services/clusters/clustermanager.py +++ b/jupyter_notebook/services/clusters/clustermanager.py @@ -1,4 +1,4 @@ -"""Manage ipython_parallel clusters in the notebook.""" +"""Manage IPython parallel clusters in the notebook.""" # Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License. @@ -23,7 +23,7 @@ class ClusterManager(LoggingConfigurable): return IOLoop.instance() def build_launchers(self, profile_dir): - from ipython_parallel.apps.ipclusterapp import IPClusterStart + from ipyparallel.apps.ipclusterapp import IPClusterStart class DummyIPClusterStart(IPClusterStart): """Dummy subclass to skip init steps that conflict with global app.