From fb02a677bbe7a0cdd6d4cf118553556647d1c65c 2012-05-31 20:08:33
From: Brian Granger <ellisonbg@gmail.com>
Date: 2012-05-31 20:08:33
Subject: [PATCH] Removing extra call to Kernel.stop_channels.

---

diff --git a/IPython/frontend/html/notebook/static/js/notificationwidget.js b/IPython/frontend/html/notebook/static/js/notificationwidget.js
index 7a4df82..857c72b 100644
--- a/IPython/frontend/html/notebook/static/js/notificationwidget.js
+++ b/IPython/frontend/html/notebook/static/js/notificationwidget.js
@@ -55,7 +55,6 @@ var IPython = (function (IPython) {
             that.set_message("Interrupting kernel",500);
         });
         $([IPython.events]).on('status_dead.Kernel',function () {
-            IPython.notebook.kernel.stop_channels();
             var dialog = $('<div/>');
             dialog.html('The kernel has died, would you like to restart it? If you do not restart the kernel, you will be able to save the notebook, but running code will not work until the notebook is reopened.');
             $(document).append(dialog);