From e1748fe10af809962850d8b89189e683dcac9a3f Mon Sep 17 00:00:00 2001 From: MinRK Date: Sat, 9 Feb 2013 15:48:05 -0800 Subject: [PATCH] fix last remaining KernelApp reference --- IPython/frontend/html/notebook/notebookapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/notebookapp.py b/IPython/frontend/html/notebook/notebookapp.py index 3f1539ab5..7dffa2e6c 100644 --- a/IPython/frontend/html/notebook/notebookapp.py +++ b/IPython/frontend/html/notebook/notebookapp.py @@ -461,7 +461,7 @@ class NotebookApp(BaseIPythonApplication): # Scrub frontend-specific flags self.kernel_argv = swallow_argv(argv, notebook_aliases, notebook_flags) # Kernel should inherit default config file from frontend - self.kernel_argv.append("--KernelApp.parent_appname='%s'"%self.name) + self.kernel_argv.append("--IPKernelApp.parent_appname='%s'" % self.name) if self.extra_args: f = os.path.abspath(self.extra_args[0])