Skip to content

Commit f3ca152

Browse files
committed
Change to line@filename
1 parent 86f4014 commit f3ca152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ void supervisor_execution_status(void) {
215215
} else if ((_exec_result.return_code & PYEXEC_EXCEPTION) != 0 &&
216216
_exec_result.exception_line > 0 &&
217217
exception != NULL) {
218-
mp_printf(&mp_plat_print, "@%d %s %q", _exec_result.exception_line, _exec_result.exception_filename, exception->base.type->name);
218+
mp_printf(&mp_plat_print, "%d@%s %q", _exec_result.exception_line, _exec_result.exception_filename, exception->base.type->name);
219219
} else {
220220
serial_write_compressed(translate("Done"));
221221
}

0 commit comments

Comments
 (0)