mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
Merge pull request #5804 from minrk/invert-callback-clear
remove an inappropriate `!`
This commit is contained in:
commit
fe53ae1360
@ -456,7 +456,7 @@ var IPython = (function (IPython) {
|
||||
var callbacks = this._msg_callbacks[msg_id];
|
||||
if (callbacks !== undefined) {
|
||||
callbacks.iopub_done = true;
|
||||
if (!callbacks.shell_done) {
|
||||
if (callbacks.shell_done) {
|
||||
this.clear_callbacks_for_msg(msg_id);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user