summaryrefslogtreecommitdiff
path: root/js/codeq/python.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/python.js')
-rw-r--r--js/codeq/python.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/codeq/python.js b/js/codeq/python.js
index ada3954..3bc7ab5 100644
--- a/js/codeq/python.js
+++ b/js/codeq/python.js
@@ -72,11 +72,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
}),
tcs = function terminalCommandSuccess (data) {
if (data.code !== 0) {
- terminal.append(data.message, 'error');
+ alert(data.message);
}
},
tcf = function terminalCommandFailed (error) {
- terminal.append(error + '\n', 'error');
+ alert(error);
};
terminal.onInput = function (text) {
@@ -170,7 +170,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
hinter.handle(data.hints);
}
else {
- terminal.append('error: ' + data.message);
+ alert(data.message);
}
})
.fail(alert)