summaryrefslogtreecommitdiff
path: root/py/objset.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-08-08 18:24:49 -0700
committerScott Shawcroft <scott@tannewt.org>2018-08-09 13:29:30 -0700
commit96ebf5bc3fb455162286b9bc31e763f3c4f1c457 (patch)
tree3d06bc866bcf943a0e0ea881a1fcab9826291a1c /py/objset.c
parent9da79c880e387ab05a683b67feb8f3da600d937d (diff)
Two fixes and translate more strings.
* Fix finding translations with escaped characters. * Add back \r to translations since its needed by screen.
Diffstat (limited to 'py/objset.c')
-rw-r--r--py/objset.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/py/objset.c b/py/objset.c
index 799ba9df0..00d6eae0e 100644
--- a/py/objset.c
+++ b/py/objset.c
@@ -31,6 +31,8 @@
#include "py/runtime.h"
#include "py/builtin.h"
+#include "supervisor/shared/translate.h"
+
#if MICROPY_PY_BUILTINS_SET
typedef struct _mp_obj_set_t {
@@ -366,7 +368,7 @@ STATIC mp_obj_t set_pop(mp_obj_t self_in) {
mp_obj_set_t *self = MP_OBJ_TO_PTR(self_in);
mp_obj_t obj = mp_set_remove_first(&self->set);
if (obj == MP_OBJ_NULL) {
- mp_raise_msg(&mp_type_KeyError, "pop from an empty set");
+ mp_raise_msg(&mp_type_KeyError, translate("pop from an empty set"));
}
return obj;
}