From 7f8b31345b6be789792b676a8975497648b19a5c Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 25 Mar 2014 00:55:39 +0200 Subject: rt_load_method(): Add missing qstr_str() when getting type name. --- py/runtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'py/runtime.c') diff --git a/py/runtime.c b/py/runtime.c index 58c6620085..17a9e778d1 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -1001,7 +1001,8 @@ void rt_load_method(mp_obj_t base, qstr attr, mp_obj_t *dest) { // no attribute/method called attr // following CPython, we give a more detailed error message for type objects if (MP_OBJ_IS_TYPE(base, &mp_type_type)) { - nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_AttributeError, "type object '%s' has no attribute '%s'", ((mp_obj_type_t*)base)->name, qstr_str(attr))); + nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_AttributeError, + "type object '%s' has no attribute '%s'", qstr_str(((mp_obj_type_t*)base)->name), qstr_str(attr))); } else { nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_AttributeError, "'%s' object has no attribute '%s'", mp_obj_get_type_str(base), qstr_str(attr))); } -- cgit v1.2.3