From f0301f402b86ba25d9a4f3f2fc4ce496aaa379dd Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Sun, 18 Oct 2009 09:25:32 -0700 Subject: [PATCH] Work on ipcontroller. * The IPControllerApp now uses ApplicationWithDir to manage the app_dir. * The setup.py script and ipcontroller script have been updated to use the new IPControllerApp. * launch_new_instance created and being used. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0826f6746..6170588aa 100755 --- a/setup.py +++ b/setup.py @@ -169,7 +169,7 @@ if 'setuptools' in sys.modules: 'console_scripts': [ 'ipython = IPython.core.ipapp:launch_new_instance', 'pycolor = IPython.utils.PyColorize:main', - 'ipcontroller = IPython.kernel.scripts.ipcontroller:main', + 'ipcontroller = IPython.kernel.ipcontrollerapp:launch_new_instance', 'ipengine = IPython.kernel.scripts.ipengine:main', 'ipcluster = IPython.kernel.scripts.ipcluster:main', 'ipythonx = IPython.frontend.wx.ipythonx:main',