summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'stmhal/input.c')
-rw-r--r--stmhal/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/input.c b/stmhal/input.c
index 6bd9e6c4f0..94f66b97f1 100644
--- a/stmhal/input.c
+++ b/stmhal/input.c
@@ -36,7 +36,7 @@
STATIC mp_obj_t mp_builtin_input(uint n_args, const mp_obj_t *args) {
if (n_args == 1) {
- mp_obj_print(args[0], PRINT_REPR);
+ mp_obj_print(args[0], PRINT_STR);
}
vstr_t line;
vstr_init(&line, 16);