Skip to content
Snippets Groups Projects
Commit a0b2c6ad authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

py/runtime: mp_resume: Fix exception handling for nanbox port.

parent 79d996a5
No related branches found
No related tags found
No related merge requests found
......@@ -1201,7 +1201,7 @@ mp_vm_return_kind_t mp_resume(mp_obj_t self_in, mp_obj_t send_value, mp_obj_t th
nlr_pop();
return MP_VM_RETURN_YIELD;
} else {
*ret_val = nlr.ret_val;
*ret_val = MP_OBJ_FROM_PTR(nlr.ret_val);
return MP_VM_RETURN_EXCEPTION;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment