From ab35cf8a3bc3c3da39d553ec676e7f147350ea4f Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Thu, 17 Mar 2016 15:17:28 -0400 Subject: [PATCH] Reword console log message --- notebook/static/notebook/js/codecell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/notebook/js/codecell.js b/notebook/static/notebook/js/codecell.js index b472ed067..6be236899 100644 --- a/notebook/static/notebook/js/codecell.js +++ b/notebook/static/notebook/js/codecell.js @@ -302,7 +302,7 @@ define([ */ CodeCell.prototype.execute = function (stop_on_error) { if (!this.kernel) { - console.log("Can't execute, kernel is not connected."); + console.log("Can't execute cell since kernel is not set."); return; }