From 078ad4ee6173cec8b0e8930ce35098b50e31e974 2014-03-06 21:26:44 From: Jonathan Frederic Date: 2014-03-06 21:26:44 Subject: [PATCH] Added output_pyerr to python error output --- diff --git a/IPython/html/static/notebook/js/outputarea.js b/IPython/html/static/notebook/js/outputarea.js index 12d39da..2199a08 100644 --- a/IPython/html/static/notebook/js/outputarea.js +++ b/IPython/html/static/notebook/js/outputarea.js @@ -422,7 +422,7 @@ var IPython = (function (IPython) { } s = s + '\n'; var toinsert = this.create_output_area(); - this.append_text(s, {}, toinsert); + this.append_text(s, {}, toinsert, 'output_pyerr'); this._safe_append(toinsert); } };