From ad4cb2c35a323f474c6926c3e44dd238cf3113a1 Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 25 Jun 2014 14:31:15 -0700 Subject: [PATCH] fix stream output created by raw_input was using incorrect 'name', when it should have been 'stream', creating invalid content in notebook documents. --- IPython/html/static/notebook/js/outputarea.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/static/notebook/js/outputarea.js b/IPython/html/static/notebook/js/outputarea.js index 182242824..bf690ae18 100644 --- a/IPython/html/static/notebook/js/outputarea.js +++ b/IPython/html/static/notebook/js/outputarea.js @@ -794,7 +794,7 @@ var IPython = (function (IPython) { } var content = { output_type : 'stream', - name : 'stdout', + stream : 'stdout', text : theprompt.text() + echo + '\n' } // remove form container