summaryrefslogtreecommitdiff
path: root/py/builtinhelp.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/builtinhelp.c')
-rw-r--r--py/builtinhelp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/builtinhelp.c b/py/builtinhelp.c
index b36f4c9d3..3b0ad71e6 100644
--- a/py/builtinhelp.c
+++ b/py/builtinhelp.c
@@ -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