diff options
author | blmorris <bryan.morrissey@gmail.com> | 2014-07-18 16:06:22 -0400 |
---|---|---|
committer | blmorris <bryan.morrissey@gmail.com> | 2014-07-18 16:06:22 -0400 |
commit | 0f4ee2e44a1e47258a8b07fb25e28286d131390c (patch) | |
tree | 7bfb507183544d14236c0be8a232a92f4113abb1 /py/objarray.c | |
parent | 0429d35f37532d2a981e704f014a248da9b157d8 (diff) | |
parent | 5467186b0eaa6e856b00f60f807bb988ae2ef8c5 (diff) | |
download | micropython-0f4ee2e44a1e47258a8b07fb25e28286d131390c.tar.gz micropython-0f4ee2e44a1e47258a8b07fb25e28286d131390c.zip |
Merge https://github.com/micropython/micropython
Diffstat (limited to 'py/objarray.c')
-rw-r--r-- | py/objarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objarray.c b/py/objarray.c index ca907fd01d..27da662a61 100644 --- a/py/objarray.c +++ b/py/objarray.c @@ -59,7 +59,7 @@ STATIC mp_obj_t array_append(mp_obj_t self_in, mp_obj_t arg); STATIC void array_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in, mp_print_kind_t kind) { mp_obj_array_t *o = o_in; if (o->typecode == BYTEARRAY_TYPECODE) { - print(env, "bytearray(b", o->typecode); + print(env, "bytearray(b"); mp_str_print_quoted(print, env, o->items, o->len, true); } else { print(env, "array('%c'", o->typecode); |