##// END OF EJS Templates
Backport PR #2490: add ZMQInteractiveShell to IPEngineApp class list...
MinRK -
Show More
@@ -41,6 +41,7 b' from IPython.zmq.ipkernel import Kernel, IPKernelApp'
41 41 from IPython.zmq.session import (
42 42 Session, session_aliases, session_flags
43 43 )
44 from IPython.zmq.zmqshell import ZMQInteractiveShell
44 45
45 46 from IPython.config.configurable import Configurable
46 47
@@ -143,7 +144,7 b' class IPEngineApp(BaseParallelApplication):'
143 144 description = _description
144 145 examples = _examples
145 146 config_file_name = Unicode(default_config_file_name)
146 classes = List([ProfileDir, Session, EngineFactory, Kernel, MPI])
147 classes = List([ZMQInteractiveShell, ProfileDir, Session, EngineFactory, Kernel, MPI])
147 148
148 149 startup_script = Unicode(u'', config=True,
149 150 help='specify a script to be run at startup')
General Comments 0
You need to be logged in to leave comments. Login now