From d9126cc77b7bd46bc3064d02fd6374d8e869cf2f 2014-06-25 22:20:13 From: MinRK Date: 2014-06-25 22:20:13 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. --- diff --git a/IPython/html/static/notebook/js/outputarea.js b/IPython/html/static/notebook/js/outputarea.js index 1822428..bf690ae 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