aboutsummaryrefslogtreecommitdiff
path: root/py/parsenum.c
diff options
context:
space:
mode:
authorAndrew Scheller <github@loowis.durge.org>2014-04-09 19:56:38 +0100
committerAndrew Scheller <github@loowis.durge.org>2014-04-09 19:56:38 +0100
commitf78cfaf8b50220325dd59fa879f74a8a355f93c3 (patch)
treea0e1c74527682c40e1bcbac34ae1a7aeef18d7d4 /py/parsenum.c
parent2bf7c092225645d8c5b15e536afdce39e3593e42 (diff)
Remove exception name from inside the exception message
This prevents micropython printing exception messages like ImportError: ImportError: No module named 'foo'
Diffstat (limited to 'py/parsenum.c')
-rw-r--r--py/parsenum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/parsenum.c b/py/parsenum.c
index c7cf68dad..64c862410 100644
--- a/py/parsenum.c
+++ b/py/parsenum.c
@@ -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