From aaefc5f2964268ef63f4af6862c275be9e1a3ead Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 27 Feb 2014 17:09:10 -0800 Subject: [PATCH] remove warning for stripped output --- IPython/html/static/notebook/js/outputarea.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/IPython/html/static/notebook/js/outputarea.js b/IPython/html/static/notebook/js/outputarea.js index e057b0701..673c0768f 100644 --- a/IPython/html/static/notebook/js/outputarea.js +++ b/IPython/html/static/notebook/js/outputarea.js @@ -496,12 +496,7 @@ var IPython = (function (IPython) { if (type==='text/html' || type==='text/svg') { value = IPython.security.sanitize_html(value); } else { - // warn and don't display if we don't know how to sanitize it - var content = { - text : "Untrusted " + type + " output ignored.", - stream : "stderr" - } - this.append_stream(content); + // don't display if we don't know how to sanitize it continue; } }