Skip to content
Snippets Groups Projects
Commit e2ba45c3 authored by Damien George's avatar Damien George
Browse files

py/vm: Use lowercase letter at start of exception message.

For consistency with all the other exception messages.
parent f7f4bf03
Branches
No related tags found
No related merge requests found
...@@ -1124,7 +1124,7 @@ unwind_return: ...@@ -1124,7 +1124,7 @@ unwind_return:
} }
} }
if (obj == MP_OBJ_NULL) { if (obj == MP_OBJ_NULL) {
obj = mp_obj_new_exception_msg(&mp_type_RuntimeError, "No active exception to reraise"); obj = mp_obj_new_exception_msg(&mp_type_RuntimeError, "no active exception to reraise");
RAISE(obj); RAISE(obj);
} }
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment