From b0856dffe8876ca4b84613da7f099301fdd08a0f 2012-05-25 09:46:45 From: Matthias BUSSONNIER Date: 2012-05-25 09:46:45 Subject: [PATCH] [qtconsole] fix append_plain_html -> append_html --- diff --git a/IPython/frontend/qt/console/console_widget.py b/IPython/frontend/qt/console/console_widget.py index 646ae14..e4b3d6c 100644 --- a/IPython/frontend/qt/console/console_widget.py +++ b/IPython/frontend/qt/console/console_widget.py @@ -1670,7 +1670,7 @@ class ConsoleWidget(LoggingConfigurable, QtGui.QWidget): else: self.layout().setCurrentWidget(self._page_control) elif html: - self._append_plain_html(text) + self._append_html(text) else: self._append_plain_text(text)