Skip to content

Commit

Permalink
Backport PR #2861: add missing KernelManager to ConsoleApp class list
Browse files Browse the repository at this point in the history
closes #2860
  • Loading branch information
minrk committed Mar 4, 2013
1 parent 06824fd commit 7c542b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion IPython/frontend/consoleapp.py
Expand Up @@ -35,6 +35,7 @@
from IPython.core.profiledir import ProfileDir
from IPython.lib.kernel import tunnel_to_kernel, find_connection_file, swallow_argv
from IPython.zmq.blockingkernelmanager import BlockingKernelManager
from IPython.zmq.kernelmanager import KernelManager
from IPython.utils.path import filefind
from IPython.utils.py3compat import str_to_bytes
from IPython.utils.traitlets import (
Expand Down Expand Up @@ -108,7 +109,7 @@
# IPythonConsole
#-----------------------------------------------------------------------------

classes = [IPKernelApp, ZMQInteractiveShell, ProfileDir, Session]
classes = [IPKernelApp, ZMQInteractiveShell, KernelManager, ProfileDir, Session]

try:
from IPython.zmq.pylab.backend_inline import InlineBackend
Expand Down

0 comments on commit 7c542b5

Please sign in to comment.