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

For consistency with all the other exception messages.
pull/1/head
Damien George 2017-09-22 11:28:45 +10:00
parent f7f4bf0321
commit e2ba45c35f
1 changed files with 1 additions and 1 deletions

View File

@ -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 {