##// END OF EJS Templates
use App.instance() in launch_new_instance (parallel apps)...
MinRK -
Show More
@@ -511,7 +511,7 b' class IPBaseParallelApplication(Application):'
511 511
512 512 def launch_new_instance():
513 513 """Create and run the IPython cluster."""
514 app = IPBaseParallelApplication()
514 app = IPBaseParallelApplication.instance()
515 515 app.initialize()
516 516 app.start()
517 517
@@ -389,7 +389,7 b' class IPControllerApp(BaseParallelApplication):'
389 389
390 390 def launch_new_instance():
391 391 """Create and run the IPython controller"""
392 app = IPControllerApp()
392 app = IPControllerApp.instance()
393 393 app.initialize()
394 394 app.start()
395 395
@@ -260,7 +260,7 b' class IPEngineApp(BaseParallelApplication):'
260 260
261 261 def launch_new_instance():
262 262 """Create and run the IPython engine"""
263 app = IPEngineApp()
263 app = IPEngineApp.instance()
264 264 app.initialize()
265 265 app.start()
266 266
@@ -86,7 +86,7 b' class IPLoggerApp(BaseParallelApplication):'
86 86
87 87 def launch_new_instance():
88 88 """Create and run the IPython LogWatcher"""
89 app = IPLoggerApp()
89 app = IPLoggerApp.instance()
90 90 app.initialize()
91 91 app.start()
92 92
General Comments 0
You need to be logged in to leave comments. Login now