Skip to content

Commit ed236f5

Browse files
committed
Update missing modules message
1 parent a6a5b55 commit ed236f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mbed/mbed.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,11 +1158,11 @@ def post_action(self):
11581158

11591159
if len(missing):
11601160
warning(
1161-
"-------------------------------------------------------------------------------\n"
1161+
"-----------------------------------------------------------------\n"
11621162
"The mbed build tools in this program require Python modules that are not installed.\n"
1163-
"This might prevent you from compiling your code or exporting to IDEs and other toolchains.\n"
1163+
"This might prevent compiling code or exporting to IDEs and other toolchains.\n"
11641164
"The missing Python modules are: %s\n"
1165-
"You can install all missing modules by opening a command prompt in \"%s\" and running \"pip install -r %s\"" % (', '.join(missing), mbed_os_path, fname))
1165+
"You can install all missing modules by running \"pip install -r %s\" in \"%s\"" % (', '.join(missing), mbed_os_path, fname))
11661166

11671167
def add_tools(self, path):
11681168
with cd(path):

0 commit comments

Comments
 (0)