Commit e2ba45c3 authored by Damien George's avatar Damien George

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

For consistency with all the other exception messages.
parent f7f4bf03
......@@ -1124,7 +1124,7 @@ unwind_return:
}
}
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);
}
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment