Show More
@@ -726,6 +726,11 var IPython = (function (IPython) { | |||
|
726 | 726 | // console.log(reply); |
|
727 | 727 | var msg_type = reply.header.msg_type; |
|
728 | 728 | var cell = this.cell_for_msg(reply.parent_header.msg_id); |
|
729 | if (!cell){ | |
|
730 | // message not from this notebook | |
|
731 | console.log("Received IOPub message not caused by one of my cells"); | |
|
732 | return; | |
|
733 | } | |
|
729 | 734 | var output_types = ['stream','display_data','pyout','pyerr']; |
|
730 | 735 | if (output_types.indexOf(msg_type) >= 0) { |
|
731 | 736 | this.handle_output(cell, msg_type, content); |
General Comments 0
You need to be logged in to leave comments.
Login now