mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix syntax error.
This commit is contained in:
parent
b4b011dc6a
commit
5a7e1b3cba
1 changed files with 2 additions and 2 deletions
|
|
@ -72,9 +72,9 @@ public class PythonInterpreter extends Interpreter {
|
|||
// Add matplotlib display hook
|
||||
InterpreterGroup intpGroup = getInterpreterGroup();
|
||||
if (intpGroup != null && intpGroup.getInterpreterHookRegistry() != null) {
|
||||
registerHook(HookType.POST_EXEC_DEV, "z._displayhook()");
|
||||
registerHook(HookType.POST_EXEC_DEV, "\nz._displayhook()");
|
||||
}
|
||||
|
||||
|
||||
// Add zeppelin-bundled libs to PYTHONPATH
|
||||
setPythonPath("../interpreter/lib/python:$PYTHONPATH");
|
||||
LOG.info("Starting Python interpreter ---->");
|
||||
|
|
|
|||
Loading…
Reference in a new issue