Skip to content

Commit 6c8cf25

Browse files
committed
Fix help messages
1 parent 4aeb3be commit 6c8cf25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mbed/mbed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2554,7 +2554,7 @@ def compile_(toolchain=None, target=None, profile=False, compile_library=False,
25542554
try:
25552555
from mbed_host_tests.host_tests_toolbox import flash_dev
25562556
except (IOError, ImportError, OSError):
2557-
error("The '-f/--flash' option requires that the 'mbed-greentea' python module is installed.\nYou can install mbed-ls by running 'pip install mbed-greentea'.", 1)
2557+
error("The '-f/--flash' option requires that the 'mbed-greentea' python module is installed.\nYou can install mbed-greentea by running 'pip install mbed-greentea'.", 1)
25582558

25592559
if flash:
25602560
fw_name = artifact_name if artifact_name else program.name
@@ -2780,7 +2780,7 @@ def detect(reset=False, sterm=False):
27802780
warning("If you're developing a new target, you can mock the device to continue your development. "
27812781
"Use 'mbedls --mock ID:NAME' to do so (see 'mbedls --help' for more information)")
27822782
else:
2783-
error("This command requires that the 'mbed-greentea' python module is installed.\nYou can install mbed-ls by running 'pip install mbed-greentea'.", 1)
2783+
error("This command requires that the 'mbed-greentea' python module is installed.\nYou can install mbed-greentea by running 'pip install mbed-greentea'.", 1)
27842784

27852785

27862786
# Generic config command

0 commit comments

Comments
 (0)