Report Jython errors to user - addresses #694

- may need to work on the format a bit more
This commit is contained in:
Tom Morris 2013-03-06 20:38:07 -05:00
parent 975c6c85dc
commit ca09ae6f90

View File

@ -128,7 +128,7 @@ public class JythonEvaluable implements Evaluable {
return unwrap(result); return unwrap(result);
} catch (PyException e) { } catch (PyException e) {
return new EvalError(e.getMessage()); return new EvalError(e.toString());
} }
} }