From 2bb09578eb25bf5cead1b0bebe74d2b5afc32937 Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Mon, 17 Aug 2015 18:26:53 -0700 Subject: [PATCH] Don't try loading cluster stuff in namespace. It should be done in ipyparallel instead! --- notebook/static-src/base/js/namespace.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notebook/static-src/base/js/namespace.js b/notebook/static-src/base/js/namespace.js index 37a4a84fa..82784f707 100644 --- a/notebook/static-src/base/js/namespace.js +++ b/notebook/static-src/base/js/namespace.js @@ -17,6 +17,8 @@ configurable: false }); } + }, function(err) { + console.warn('Jupyter.' + name + ' unavailable because "' + module_path + '" was not loaded.', err); }); }; @@ -32,6 +34,8 @@ configurable: false }); } + }, function(err) { + console.warn('Jupyter.' + name + ' unavailable because "' + module_path + '" was not loaded.', err); }); }