diff options
| author | Nick Moore <nick@zoic.org> | 2019-03-02 22:19:47 +1100 |
|---|---|---|
| committer | Nick Moore <nick@zoic.org> | 2019-03-28 09:56:48 +1100 |
| commit | 93684737eb9a85aca1972ed53f5ec908c51e2401 (patch) | |
| tree | 4fc17528d96c591668dfa81adf94c1c540cb7365 /shared-bindings | |
| parent | 71622a45155f8082d56e379c9f3e5b3e4645c09e (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.c | 2 |
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) { |
