From d5d164473f813e973a2c7ce2237c8aa92c9ee1eb 2011-09-13 04:12:08 From: Brian Granger <ellisonbg@gmail.com> Date: 2011-09-13 04:12:08 Subject: [PATCH] fixConsole no longer trims the final text. --- diff --git a/IPython/frontend/html/notebook/static/js/utils.js b/IPython/frontend/html/notebook/static/js/utils.js index 4c5b6d3..f81c7d4 100644 --- a/IPython/frontend/html/notebook/static/js/utils.js +++ b/IPython/frontend/html/notebook/static/js/utils.js @@ -70,7 +70,7 @@ IPython.utils = (function (IPython) { txt = txt.replace(re, closer + opener) } if (opened) txt += "</span>" - return txt.trim() + return txt }