Skip to content

Commit e2ba45c

Browse files
committed
py/vm: Use lowercase letter at start of exception message.
For consistency with all the other exception messages.
1 parent f7f4bf0 commit e2ba45c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/vm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ unwind_jump:;
11241124
}
11251125
}
11261126
if (obj == MP_OBJ_NULL) {
1127-
obj = mp_obj_new_exception_msg(&mp_type_RuntimeError, "No active exception to reraise");
1127+
obj = mp_obj_new_exception_msg(&mp_type_RuntimeError, "no active exception to reraise");
11281128
RAISE(obj);
11291129
}
11301130
} else {

0 commit comments

Comments
 (0)