Skip to content

Commit 325e96b

Browse files
committed
Improve missing Python modules warning
1 parent fe4f8ca commit 325e96b

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
@@ -874,10 +874,10 @@ def post_clone(self):
874874

875875
if len(missing):
876876
warning(
877-
"Detected unmet Python environment dependencies for mbed OS and tools in this program.\n"
877+
"mbed OS and tools in this program require Python modules that are not installed.\n"
878878
"This might prevent you from compiling your code or exporting to IDEs and other toolchains.\n"
879879
"The missing Python modules are: %s\n"
880-
"You can install all missing dependencies by opening a command prompt in \"%s\" and running \"pip install %s\"" % (', '.join(missing), mbed_os_path, fname))
880+
"You can install all missing modules by opening a command prompt in \"%s\" and running \"pip install %s\"" % (', '.join(missing), mbed_os_path, fname))
881881

882882

883883
def formaturl(url, format="default"):

0 commit comments

Comments
 (0)