Don't try loading cluster stuff in namespace.

It should be done in ipyparallel instead!
This commit is contained in:
Jonathan Frederic 2015-08-17 18:26:53 -07:00
parent c0a30d4df8
commit 2bb09578eb

View File

@ -17,6 +17,8 @@
configurable: false configurable: false
}); });
} }
}, function(err) {
console.warn('Jupyter.' + name + ' unavailable because "' + module_path + '" was not loaded.', err);
}); });
}; };
@ -32,6 +34,8 @@
configurable: false configurable: false
}); });
} }
}, function(err) {
console.warn('Jupyter.' + name + ' unavailable because "' + module_path + '" was not loaded.', err);
}); });
} }