From 5c17be752dedb46370af3b1c370baa59b17a1d4b Mon Sep 17 00:00:00 2001 From: Matteo Bertucci Date: Wed, 24 Feb 2021 15:45:08 +0100 Subject: Don't communicate the traceback back to the backend --- resources/unittest_template.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'resources') diff --git a/resources/unittest_template.py b/resources/unittest_template.py index 7919b5c..755f7cc 100644 --- a/resources/unittest_template.py +++ b/resources/unittest_template.py @@ -77,6 +77,5 @@ try: module = _load_user_module() _main() except Exception: - print("Uncaught exception:\n", file=RESULT) - traceback.print_exc(file=RESULT) + print("Uncaught exception inside runner.", file=RESULT) _exit_sandbox(99) \ No newline at end of file -- cgit v1.2.3