From 164d1459141ace26b746232a4d7903d30b0880f0 2016-02-22 09:58:56 From: Min RK Date: 2016-02-22 09:58:56 Subject: [PATCH] deprecate default_gui_banner instead of removing it outright, which breaks things unnecessarily --- diff --git a/IPython/core/usage.py b/IPython/core/usage.py index 0f2ff03..21de20b 100644 --- a/IPython/core/usage.py +++ b/IPython/core/usage.py @@ -346,3 +346,10 @@ default_banner_parts = [ ] default_banner = ''.join(default_banner_parts) + +# deprecated GUI banner + +default_gui_banner = '\n'.join([ + 'DEPRECATED: IPython.core.usage.default_gui_banner is deprecated and will be removed', + default_banner, +])