fixConsole no longer trims the final text.

This commit is contained in:
Brian Granger 2011-09-12 21:12:08 -07:00
parent 249f2f6ade
commit b7ab64f304

View File

@ -70,7 +70,7 @@ IPython.utils = (function (IPython) {
txt = txt.replace(re, closer + opener)
}
if (opened) txt += "</span>"
return txt.trim()
return txt
}