Remove exception name from inside the exception message

This prevents micropython printing exception messages like
ImportError: ImportError: No module named 'foo'
This commit is contained in:
Andrew Scheller
2014-04-09 19:56:38 +01:00
parent 2bf7c09222
commit f78cfaf8b5
2 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ mp_obj_t mp_parse_num_integer(const char *restrict str, uint len, int base) {
// check radix base
if ((base != 0 && base < 2) || base > 36) {
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "ValueError: int() arg 2 must be >=2 and <= 36"));
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "int() arg 2 must be >= 2 and <= 36"));
}
// skip leading space