##// END OF EJS Templates
fix residual import issues with IPython.parallel reorganization
MinRK -
Show More
@@ -26,7 +26,8 b' from zmq.eventloop import ioloop'
26
26
27 from IPython.external.argparse import ArgumentParser, SUPPRESS
27 from IPython.external.argparse import ArgumentParser, SUPPRESS
28 from IPython.utils.importstring import import_item
28 from IPython.utils.importstring import import_item
29 from .clusterdir import (
29
30 from IPython.parallel.apps.clusterdir import (
30 ApplicationWithClusterDir, ClusterDirConfigLoader,
31 ApplicationWithClusterDir, ClusterDirConfigLoader,
31 ClusterDirError, PIDFileError
32 ClusterDirError, PIDFileError
32 )
33 )
@@ -260,9 +261,9 b' class IPClusterApp(ApplicationWithClusterDir):'
260 def create_default_config(self):
261 def create_default_config(self):
261 super(IPClusterApp, self).create_default_config()
262 super(IPClusterApp, self).create_default_config()
262 self.default_config.Global.controller_launcher = \
263 self.default_config.Global.controller_launcher = \
263 'IPython.parallel.launcher.LocalControllerLauncher'
264 'IPython.parallel.apps.launcher.LocalControllerLauncher'
264 self.default_config.Global.engine_launcher = \
265 self.default_config.Global.engine_launcher = \
265 'IPython.parallel.launcher.LocalEngineSetLauncher'
266 'IPython.parallel.apps.launcher.LocalEngineSetLauncher'
266 self.default_config.Global.n = 2
267 self.default_config.Global.n = 2
267 self.default_config.Global.delay = 2
268 self.default_config.Global.delay = 2
268 self.default_config.Global.reset_config = False
269 self.default_config.Global.reset_config = False
@@ -32,7 +32,8 b' from zmq.utils import jsonapi as json'
32 from IPython.config.loader import Config
32 from IPython.config.loader import Config
33
33
34 from IPython.parallel import factory
34 from IPython.parallel import factory
35 from .clusterdir import (
35
36 from IPython.parallel.apps.clusterdir import (
36 ApplicationWithClusterDir,
37 ApplicationWithClusterDir,
37 ClusterDirConfigLoader
38 ClusterDirConfigLoader
38 )
39 )
@@ -22,7 +22,7 b' import sys'
22 import zmq
22 import zmq
23 from zmq.eventloop import ioloop
23 from zmq.eventloop import ioloop
24
24
25 from .clusterdir import (
25 from IPython.parallel.apps.clusterdir import (
26 ApplicationWithClusterDir,
26 ApplicationWithClusterDir,
27 ClusterDirConfigLoader
27 ClusterDirConfigLoader
28 )
28 )
@@ -20,11 +20,11 b' import sys'
20
20
21 import zmq
21 import zmq
22
22
23 from .clusterdir import (
23 from IPython.parallel.apps.clusterdir import (
24 ApplicationWithClusterDir,
24 ApplicationWithClusterDir,
25 ClusterDirConfigLoader
25 ClusterDirConfigLoader
26 )
26 )
27 from .logwatcher import LogWatcher
27 from IPython.parallel.apps.logwatcher import LogWatcher
28
28
29 #-----------------------------------------------------------------------------
29 #-----------------------------------------------------------------------------
30 # Module level variables
30 # Module level variables
General Comments 0
You need to be logged in to leave comments. Login now