summaryrefslogtreecommitdiff
path: root/js/python.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/python.js')
-rw-r--r--js/python.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/js/python.js b/js/python.js
index 4a2ac92..d114b7e 100644
--- a/js/python.js
+++ b/js/python.js
@@ -83,8 +83,6 @@
};
};
-
-
/**
* Creates a new handler for the given Prolog assignment definition.
*
@@ -98,7 +96,7 @@
jqConsole = $('#console'),
jqHints = $('#info'),
editor = CodeMirror(jqEditor[0], { cursorHeight: 0.85, lineNumbers: true, matchBrackets: true, mode: 'python' }),
- activityHandler = codeq.makeActivityHandler(editor, problem.id),
+ activityHandler = makeActivityHandler(editor, problem.id),
terminal = makePythonTerminalHandler(jqConsole, editor, problem.id, activityHandler),
hinter = codeq.makeHinter(jqHints, jqEditor, editor, problem.hint);