Skip to content
Snippets Groups Projects
Commit ec31438c authored by Yonatan Goldschmidt's avatar Yonatan Goldschmidt Committed by Damien George
Browse files

py/builtinhelp: Only print help re FS modules if external import enabled

parent 8fea833e
No related branches found
No related tags found
No related merge requests found
......@@ -123,8 +123,10 @@ STATIC void mp_help_print_modules(void) {
mp_print_str(MP_PYTHON_PRINTER, "\n");
}
#if MICROPY_ENABLE_EXTERNAL_IMPORT
// let the user know there may be other modules available from the filesystem
mp_print_str(MP_PYTHON_PRINTER, "Plus any modules on the filesystem\n");
#endif
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment