From 5c9dfd9b5802e785306d50624f7d4646cb7b9d02 Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 8 Jan 2014 15:03:28 -0800 Subject: [PATCH] remove unnecessary conversion of newline to br tag relic from when I was using div, not pre --- IPython/html/templates/error.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/templates/error.html b/IPython/html/templates/error.html index 2a28dae36..bedf06c2e 100644 --- a/IPython/html/templates/error.html +++ b/IPython/html/templates/error.html @@ -22,7 +22,7 @@ div#header, div#site { {% if message %}

The error was:

-
{{message | replace('\n', '
')}}
+
{{message}}
{% endif %} {% endblock %}