From a0adb30b87d51c967c8a90b3d51ded2a47b808a9 2016-04-19 11:48:51 From: Thomas Kluyver Date: 2016-04-19 11:48:51 Subject: [PATCH] Return value from format_display_data I guess nothing was using this ;-) --- diff --git a/IPython/core/formatters.py b/IPython/core/formatters.py index 700a903..62d296f 100644 --- a/IPython/core/formatters.py +++ b/IPython/core/formatters.py @@ -944,7 +944,7 @@ def format_display_data(obj, include=None, exclude=None): """ from IPython.core.interactiveshell import InteractiveShell - InteractiveShell.instance().display_formatter.format( + return InteractiveShell.instance().display_formatter.format( obj, include, exclude