diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | scilab_kernel.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -22,5 +22,5 @@ release: clean test: clean python setup.py install - cd ~; ipython qtconsole --kernel=scilab + cd ~; ipython qtconsole --kernel scilab make clean diff --git a/scilab_kernel.py b/scilab_kernel.py index 8175b60..dc3d8ca 100644 --- a/scilab_kernel.py +++ b/scilab_kernel.py @@ -141,7 +141,7 @@ class ScilabKernel(Kernel): return self._handle_error(str(e)) if not silent: - stream_content = {'name': 'stdout', 'data': output} + stream_content = {'name': 'stdout', 'text': output} self.send_response(self.iopub_socket, 'stream', stream_content) if self.inline: |