summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorNick Moore <nick@zoic.org>2019-03-02 22:19:47 +1100
committerNick Moore <nick@zoic.org>2019-03-28 09:56:48 +1100
commit93684737eb9a85aca1972ed53f5ec908c51e2401 (patch)
tree4fc17528d96c591668dfa81adf94c1c540cb7365 /shared-bindings
parent71622a45155f8082d56e379c9f3e5b3e4645c09e (diff)
Fix up messages & wild stab at translations for adafruit/circuitpython#1046
The mysterious MP_WEAK linking bug still exists, thus the new message for 'set'.
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/rtc/RTC.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/rtc/RTC.c b/shared-bindings/rtc/RTC.c
index 7c85f328c..d9153781e 100644
--- a/shared-bindings/rtc/RTC.c
+++ b/shared-bindings/rtc/RTC.c
@@ -37,7 +37,7 @@
#include "supervisor/shared/translate.h"
void MP_WEAK common_hal_rtc_get_time(timeutils_struct_time_t *tm) {
- mp_raise_NotImplementedError(translate("RTC get is not supported on this board"));
+ mp_raise_NotImplementedError(translate("RTC is not supported on this board"));
}
void MP_WEAK common_hal_rtc_set_time(timeutils_struct_time_t *tm) {