summaryrefslogtreecommitdiffstatshomepage
path: root/py/objarray.c
diff options
context:
space:
mode:
authorblmorris <bryan.morrissey@gmail.com>2014-07-21 12:50:10 -0400
committerblmorris <bryan.morrissey@gmail.com>2014-07-21 12:50:10 -0400
commit721d6240c951d7f38289fdfb702536dfa155fdd8 (patch)
tree84ba9fba1218648f73f38346b30ad847437d3046 /py/objarray.c
parentef204733d6abc31b09e4e7823d4665fafebd87ed (diff)
parent4038f513ea0a6be75ecbc4d8ab2bbe2349524bca (diff)
downloadmicropython-721d6240c951d7f38289fdfb702536dfa155fdd8.tar.gz
micropython-721d6240c951d7f38289fdfb702536dfa155fdd8.zip
Merge https://github.com/blmorris/micropython into Myriad2
Diffstat (limited to 'py/objarray.c')
-rw-r--r--py/objarray.c2
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);