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

For consistency with all the other exception messages.
pull/3239/merge
Damien George 2017-09-22 11:28:45 +10:00
rodzic f7f4bf0321
commit e2ba45c35f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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