From aa586fd81940e557a1df54ecd0478f9d67dfb6b4 2016-03-14 20:41:59 From: Thomas Kluyver Date: 2016-03-14 20:41:59 Subject: [PATCH] Merge pull request #9325 from minrk/rm-unused-arg Remove unused `display_banner=False` arg --- diff --git a/IPython/terminal/ipapp.py b/IPython/terminal/ipapp.py index ba80177..c1a3dad 100755 --- a/IPython/terminal/ipapp.py +++ b/IPython/terminal/ipapp.py @@ -317,7 +317,7 @@ class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp): # based app, because we call shell.show_banner() by hand below # so the banner shows *before* all extension loading stuff. self.shell = TerminalInteractiveShell.instance(parent=self, - display_banner=False, profile_dir=self.profile_dir, + profile_dir=self.profile_dir, ipython_dir=self.ipython_dir, user_ns=self.user_ns) self.shell.configurables.append(self)