Merge pull request #2838 from spkuehl/UART_sharedbinding_fix

Fix #2814 Corrected UART output.
This commit is contained in:
Scott Shawcroft 2020-05-01 11:05:24 -07:00 committed by GitHub
commit 242063e1d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ mp_obj_t board_uart(void) {
}
#else
mp_obj_t board_uart(void) {
mp_raise_NotImplementedError_varg(translate("No default %q bus"), MP_QSTR_SPI);
mp_raise_NotImplementedError_varg(translate("No default %q bus"), MP_QSTR_UART);
return NULL;
}
#endif